cspj-application/docker/postgres/docker-compose.yml

15 lines
309 B
YAML
Raw Normal View History

2024-11-11 00:43:09 +08:00
services:
postgres:
image: postgres:latest
container_name: postgres_db
environment:
POSTGRES_USER: asdfuser
POSTGRES_PASSWORD: asdfpassword
POSTGRES_DB: asdfdb
ports:
2025-01-16 03:18:48 +08:00
- "3335:5432"
2024-11-11 00:43:09 +08:00
volumes:
- postgres_data:/var/lib/postgresql/data
2025-01-14 02:39:24 +08:00
volumes:
postgres_data: