From 5a5dde6be9b4207e10bc73a986f920e6c1864fb7 Mon Sep 17 00:00:00 2001 From: Marijn Doeve Date: Sun, 13 Jul 2025 22:07:20 +0200 Subject: [PATCH] Add networks to planka --- planka/compose.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/planka/compose.yaml b/planka/compose.yaml index 49c6621..39a4864 100644 --- a/planka/compose.yaml +++ b/planka/compose.yaml @@ -66,6 +66,10 @@ services: - traefik.http.routers.planka.rule=Host(`planka.marijndoeve.nl`) - traefik.http.routers.planka.entrypoints=websecure - traefik.http.routers.planka.tls.certresolver=marijndoeve + networks: + - internal + - web + postgres: image: postgres:16-alpine restart: on-failure @@ -80,10 +84,18 @@ services: interval: 10s timeout: 5s retries: 5 + networks: + - internal volumes: favicons: user-avatars: background-images: attachments: - db-data: \ No newline at end of file + db-data: + +networks: + web: + external: true + internal: + external: false \ No newline at end of file