20 lines
386 B
YAML
20 lines
386 B
YAML
stgrest:
|
|
image: pg_local
|
|
ports:
|
|
- "3000:3000"
|
|
links:
|
|
- postgres:postgres
|
|
environment:
|
|
PGRST_DB_URI: postgres://app_user:password@postgres:5432/app_db
|
|
PGRST_DB_SCHEMA: public
|
|
PGRST_DB_ANON_ROLE: app_user
|
|
|
|
postgres:
|
|
image: postgres
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
POSTGRES_DB: app_db
|
|
POSTGRES_USER: app_user
|
|
POSTGRES_PASSWORD: password
|