Files
cms-automotivo/docker-compose.yml
Cauê Faleiros 9acbbe1308
All checks were successful
Build and Deploy / build-and-push (push) Successful in 39s
fix: Change exposed port from 8080 to 8081 to avoid conflicts
2026-02-20 15:06:31 -03:00

27 lines
625 B
YAML

version: '3.8'
services:
web:
# Adjust the image name to match your Gitea repository owner/name
image: gitea.blyzer.com.br/farelos/cms-automotivo:latest
ports:
# Maps port 80 inside the container to port 8081 on the host
- "8081:80"
deploy:
mode: replicated
replicas: 1
restart_policy:
condition: on-failure
update_config:
parallelism: 1
delay: 10s
# Environment variables for runtime configuration (if any are not baked in)
environment:
- NODE_ENV=production
networks:
- app_net
networks:
app_net:
driver: overlay