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:
|
|
|
|
- "5432:5432"
|
|
|
|
volumes:
|
|
|
|
- postgres_data:/var/lib/postgresql/data
|
2025-01-14 02:39:24 +08:00
|
|
|
volumes:
|
|
|
|
postgres_data:
|