This commit is contained in:
Pavel Flegr 2026-04-08 17:53:30 +02:00
commit ef105e1cac
22 changed files with 3001 additions and 0 deletions

14
docker-compose.yml Normal file
View file

@ -0,0 +1,14 @@
services:
postgres:
image: postgres:16
environment:
POSTGRES_DB: superbanka
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- "5433:5432"
volumes:
- postgres-data:/var/lib/postgresql/data
volumes:
postgres-data: