Compare commits

...

2 Commits

Author SHA1 Message Date
83b70c9096 add url 2025-07-13 22:11:17 +02:00
5a5dde6be9 Add networks to planka 2025-07-13 22:07:20 +02:00

View File

@@ -9,7 +9,7 @@ services:
- attachments:/app/private/attachments - attachments:/app/private/attachments
environment: environment:
BASE_URL: http://localhost:3000 BASE_URL: https://planka.marijndoeve.nl
DATABASE_URL: postgresql://postgres:${POSTGRES_PASSWORD}@postgres/planka DATABASE_URL: postgresql://postgres:${POSTGRES_PASSWORD}@postgres/planka
SECRET_KEY: ${SECRET_KEY} SECRET_KEY: ${SECRET_KEY}
@@ -66,6 +66,10 @@ services:
- traefik.http.routers.planka.rule=Host(`planka.marijndoeve.nl`) - traefik.http.routers.planka.rule=Host(`planka.marijndoeve.nl`)
- traefik.http.routers.planka.entrypoints=websecure - traefik.http.routers.planka.entrypoints=websecure
- traefik.http.routers.planka.tls.certresolver=marijndoeve - traefik.http.routers.planka.tls.certresolver=marijndoeve
networks:
- internal
- web
postgres: postgres:
image: postgres:16-alpine image: postgres:16-alpine
restart: on-failure restart: on-failure
@@ -80,6 +84,8 @@ services:
interval: 10s interval: 10s
timeout: 5s timeout: 5s
retries: 5 retries: 5
networks:
- internal
volumes: volumes:
favicons: favicons:
@@ -87,3 +93,9 @@ volumes:
background-images: background-images:
attachments: attachments:
db-data: db-data:
networks:
web:
external: true
internal:
external: false