fix: move encryptid containers to rspace-internal network
The encryptid-internal network had persistent Docker networking issues (TCP CONNECT_TIMEOUT between containers on the same bridge). Using the rspace-internal network which already works for rspace↔rspace-db. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
7d8f64d17c
commit
e4ad1b68e9
|
|
@ -213,7 +213,7 @@ services:
|
||||||
- "traefik.http.routers.encryptid-wellknown-rid.service=encryptid"
|
- "traefik.http.routers.encryptid-wellknown-rid.service=encryptid"
|
||||||
networks:
|
networks:
|
||||||
- traefik-public
|
- traefik-public
|
||||||
- encryptid-internal
|
- rspace-internal
|
||||||
- rmail-mailcow
|
- rmail-mailcow
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "bun", "-e", "fetch('http://localhost:3000/health').then(r => r.json()).then(d => process.exit(d.database ? 0 : 1)).catch(() => process.exit(1))"]
|
test: ["CMD", "bun", "-e", "fetch('http://localhost:3000/health').then(r => r.json()).then(d => process.exit(d.database ? 0 : 1)).catch(() => process.exit(1))"]
|
||||||
|
|
@ -233,7 +233,7 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- encryptid-pgdata:/var/lib/postgresql/data
|
- encryptid-pgdata:/var/lib/postgresql/data
|
||||||
networks:
|
networks:
|
||||||
- encryptid-internal
|
- rspace-internal
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD-SHELL", "pg_isready -U encryptid -d encryptid"]
|
test: ["CMD-SHELL", "pg_isready -U encryptid -d encryptid"]
|
||||||
interval: 10s
|
interval: 10s
|
||||||
|
|
@ -262,4 +262,3 @@ networks:
|
||||||
name: mailcowdockerized_mailcow-network
|
name: mailcowdockerized_mailcow-network
|
||||||
external: true
|
external: true
|
||||||
rspace-internal:
|
rspace-internal:
|
||||||
encryptid-internal:
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue