12 lines
245 B
YAML
12 lines
245 B
YAML
|
version: "3.1"
|
||
|
services:
|
||
|
postgres:
|
||
|
image: postgres:13-alpine
|
||
|
restart: always
|
||
|
environment:
|
||
|
POSTGRES_PASSWORD: meincantor_password
|
||
|
POSTGRES_USER: meincantor
|
||
|
POSTGRES_DB: meincantor_db
|
||
|
ports:
|
||
|
- "5432:5432"
|