continued the kita-planer

This commit is contained in:
t.indorf
2026-05-08 14:32:14 +02:00
parent b686e714ff
commit 7aff691803
85 changed files with 9434 additions and 588 deletions
+18
View File
@@ -0,0 +1,18 @@
version: '3.8'
services:
postgres:
image: postgres:16-alpine
container_name: kita_planer_db
environment:
POSTGRES_USER: kita
POSTGRES_PASSWORD: kita
POSTGRES_DB: kita_planer
ports:
- "5433:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
volumes:
postgres_data: