Simplify Docker network config to use traefik-public only
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
fdd75a135e
commit
206ca2b9cc
|
|
@ -19,7 +19,6 @@ services:
|
||||||
- "traefik.http.services.votc.loadbalancer.server.port=3000"
|
- "traefik.http.services.votc.loadbalancer.server.port=3000"
|
||||||
networks:
|
networks:
|
||||||
- traefik-public
|
- traefik-public
|
||||||
- votc-internal
|
|
||||||
|
|
||||||
votc-db:
|
votc-db:
|
||||||
image: postgres:16-alpine
|
image: postgres:16-alpine
|
||||||
|
|
@ -38,7 +37,7 @@ services:
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 5
|
retries: 5
|
||||||
networks:
|
networks:
|
||||||
- votc-internal
|
- traefik-public
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
votc-postgres-data:
|
votc-postgres-data:
|
||||||
|
|
@ -46,8 +45,3 @@ volumes:
|
||||||
networks:
|
networks:
|
||||||
traefik-public:
|
traefik-public:
|
||||||
external: true
|
external: true
|
||||||
votc-internal:
|
|
||||||
driver: bridge
|
|
||||||
ipam:
|
|
||||||
config:
|
|
||||||
- subnet: 172.29.0.0/24
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue