VoiceSementle / docker-compose.yml
SJLee-0525
[CHORE] test9
9f30ef0
raw
history blame
419 Bytes
services:
# PostgreSQL
postgres:
image: postgres:16-alpine
container_name: voice-komentle-db
environment:
POSTGRES_DB: voice_komentle
POSTGRES_USER: newmes
POSTGRES_PASSWORD: zmffnzp
ports:
- "2001:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
volumes:
postgres_data:
networks:
default:
name: voice-komentle-network