1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/postgrest/docker-compose.yml

10 lines
239 B
YAML
Raw Normal View History

2019-05-01 01:24:01 +00:00
postgrest:
image: postgrest/postgrest
ports:
- "3000:3000"
environment:
PGRST_DB_URI: postgres://username:password@postgres:5432/postgres
PGRST_DB_SCHEMA: public
PGRST_DB_ANON_ROLE: postgres
restart: unless-stopped