chore: first
This commit is contained in:
Executable
+20
@@ -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:
|
||||
Reference in New Issue
Block a user