Dockerfile that works with postgrest 0.4 (#810)
Also an example docker-compose
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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
|
||||
Reference in New Issue
Block a user