13 lines
190 B
YAML
13 lines
190 B
YAML
version: "3.8"
|
|
services:
|
|
database:
|
|
image: postgres:alpine
|
|
ports:
|
|
- 5432:5432
|
|
volumes:
|
|
- posts:/var/lib/postgresql/data
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
posts:
|