11 lines
189 B
YAML
11 lines
189 B
YAML
|
version: "3.1"
|
||
|
|
||
|
services:
|
||
|
db:
|
||
|
image: postgres
|
||
|
ports: [5432:5432]
|
||
|
environment:
|
||
|
POSTGRES_USER: postgres
|
||
|
POSTGRES_PASSWORD: postgres
|
||
|
POSTGRES_DB: openstellaris
|