12 lines
184 B
YAML
12 lines
184 B
YAML
version: '3.3'
|
|
services:
|
|
db:
|
|
image: postgres
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: password
|
|
ports:
|
|
- '5432:5432'
|
|
|