fix: traefik.docker.network label must use actual network name not compose alias
Some checks are pending
CI / Engine — lint / typecheck / test (push) Waiting to run
CI / API — lint / typecheck / test (push) Waiting to run
CI / Web — typecheck / lint / build (push) Waiting to run

This commit is contained in:
Manohar Gupta 2026-05-15 05:36:29 +00:00
parent e0792a9f96
commit 38108f62eb

View file

@ -20,7 +20,7 @@ services:
- ./data:/app/data - ./data:/app/data
labels: labels:
- traefik.enable=true - traefik.enable=true
- traefik.docker.network=web - traefik.docker.network=dokploy-network
- traefik.http.routers.api.rule=Host(`model.manohargupta.com`) && PathPrefix(`/api`) - traefik.http.routers.api.rule=Host(`model.manohargupta.com`) && PathPrefix(`/api`)
- traefik.http.routers.api.entrypoints=websecure - traefik.http.routers.api.entrypoints=websecure
- traefik.http.routers.api.tls.certresolver=letsencrypt - traefik.http.routers.api.tls.certresolver=letsencrypt
@ -54,7 +54,7 @@ services:
- NEXT_PUBLIC_API_URL=https://model.manohargupta.com/api - NEXT_PUBLIC_API_URL=https://model.manohargupta.com/api
labels: labels:
- traefik.enable=true - traefik.enable=true
- traefik.docker.network=web - traefik.docker.network=dokploy-network
- traefik.http.routers.web.rule=Host(`model.manohargupta.com`) - traefik.http.routers.web.rule=Host(`model.manohargupta.com`)
- traefik.http.routers.web.entrypoints=websecure - traefik.http.routers.web.entrypoints=websecure
- traefik.http.routers.web.tls.certresolver=letsencrypt - traefik.http.routers.web.tls.certresolver=letsencrypt