This commit is contained in:
2026-03-04 18:23:00 +03:00
parent b81df5866b
commit 205d9cf8b0
15 changed files with 439 additions and 165 deletions

13
docker-compose.yaml Normal file
View File

@@ -0,0 +1,13 @@
services:
psql:
image: postgres:18.2-alpine3.23
ports:
- "5432:5432"
environment:
POSTGRES_DB: ${PSQL_NAME}
POSTGRES_USER: ${PSQL_USER}
POSTGRES_PASSWORD: ${PSQL_PASS}
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: