In the previous section we’ve created the database service and bootstraped it with our entities and user roles. Now it’s time to configure the PostgREST service and tie it up with the DB. We’ll start by modifying the docker-compose.yml file and adding the following config under the server section: version: '3' services: db: # PostgreSQL database config server: image: postgrest/postgrest ports: - "3000:3000" links: - db:db environment: PGRST_DB_URI: postgres://authenticator:password@db:5...