22 lines
393 B
Bash
22 lines
393 B
Bash
|
# postgrest
|
||
|
|
||
|
POSTGREST_CONTAINER_NAME=postgrest
|
||
|
POSTGREST_IMAGE=postgrest/postgrest:v12.0.2
|
||
|
|
||
|
# postgres
|
||
|
|
||
|
POSTGRES_CONTAINER_NAME=postgres
|
||
|
POSTGRES_IMAGE=postgres:latest
|
||
|
POSTGRES_VOLUME_NAME=postgres
|
||
|
|
||
|
POSTGRES_USER=postgres
|
||
|
POSTGRES_PASSWORD=postgres
|
||
|
POSTGRES_DB=postgres
|
||
|
DB_ANON_ROLE=anon
|
||
|
DB_SCHEMA=public
|
||
|
|
||
|
# swagger
|
||
|
|
||
|
SWAGGER_CONTAINER_NAME=swagger
|
||
|
SWAGGER_IMAGE=swaggerapi/swagger-ui:v5.11.0
|