Spaces:
Configuration error
Configuration error
File size: 359 Bytes
98c95a0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | version: '3.8'
services:
db:
image: postgres:15
container_name: postgres-db
environment:
POSTGRES_USER: ${DB_USER:-qobiltu}
POSTGRES_PASSWORD: ${DB_PASSWORD:-qobiltu}
POSTGRES_DB: ${DB_NAME:-qobiltu}
ports:
- "5432:5432"
volumes:
- db-data:/var/lib/postgresql/data
restart: always
volumes:
db-data:
|