15 lines
309 B
YAML
15 lines
309 B
YAML
|
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
|
||
|
volumes:
|
||
|
postgres_data:
|