chore: first

This commit is contained in:
Mahyargdz
2025-05-11 10:27:30 +03:30
commit 4e563c497d
102 changed files with 18602 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
services:
pg_db:
image: postgres:alpine
env_file:
- .env
restart: always
container_name: dzone-pg-db
ports:
- ${DB_PORT}:5432
# networks:
# - app_network
volumes:
- dzone-pg-data:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: ${DB_PASS}
POSTGRES_USER: ${DB_USER}
POSTGRES_DB: ${DB_NAME}
volumes:
dzone-pg-data: