This commit is contained in:
2026-01-11 13:56:40 +01:00
parent df1cdc0303
commit f7c975a3f0
2 changed files with 30 additions and 0 deletions

14
docker-compose.pgsql.yml Normal file
View File

@@ -0,0 +1,14 @@
volumes:
pgsql_data:
services:
db:
image: postgres:18-alpine
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
volumes:
- pgsql_data:/var/lib/postgresql/data
ports:
- "5432:5432"