This commit is contained in:
2026-06-17 00:08:47 +07:00
parent 540b26b343
commit a61455a538
6 changed files with 32 additions and 5 deletions
+18
View File
@@ -0,0 +1,18 @@
version: '3.8'
services:
postgres:
image: postgres:15
container_name: postgres15
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: ${REPO_NAME_SNAKE}
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
volumes:
postgres_data: