Files
phoenix/docker-compose.yml
Tobias Klemp 9166be8ab0
Some checks failed
CI / build-and-test (push) Failing after 3m15s
fix compose file
2026-01-02 16:16:09 +01:00

19 lines
532 B
YAML

networks:
default:
name: traefik-proxy
external: true
services:
app:
image: ${IMAGE_URL}
container_name: ${PROJECT_NAME}-app
restart: unless-stopped
labels:
- traefik.enable=true
- traefik.docker.network=traefik-proxy
- traefik.http.routers.${PROJECT_NAME}.entrypoints=http
- traefik.http.routers.${PROJECT_NAME}.service=${PROJECT_NAME}
- traefik.http.routers.${PROJECT_NAME}.rule=Host(`${URL}`)
- traefik.http.services.${PROJECT_NAME}.loadbalancer.server.port=3000