FEAT: DB basics

This commit is contained in:
2026-04-16 14:21:58 +02:00
parent 5794c3fbb5
commit dc6043ed13
16 changed files with 286 additions and 42 deletions

20
docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
services:
db:
image: postgres:14.5
restart: always
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: mydb
ports:
- "45738:5432"
volumes:
- pgdata:/var/lib/postgresql/data
adminer:
image: adminer
restart: always
ports:
- 8080:8080
volumes:
pgdata: