18 lines
310 B
YAML
18 lines
310 B
YAML
stgrest:
|
|
image: begriffs/postgrest:latest
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- ./config.conf:/etc/postgrest.conf
|
|
links:
|
|
- postgres:postgres
|
|
|
|
postgres:
|
|
image: postgres
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
POSTGRES_DB: app_db
|
|
POSTGRES_USER: app_user
|
|
POSTGRES_PASSWORD: password
|