10 lines
129 B
YAML
10 lines
129 B
YAML
|
version: "3.4"
|
||
|
services:
|
||
|
db:
|
||
|
image: postgres
|
||
|
restart: always
|
||
|
ports:
|
||
|
- "5432:5432"
|
||
|
env_file:
|
||
|
- .env
|