-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
31 lines (31 loc) · 1023 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Config for running the Docker container in CI / local development. Not used in production.
services:
db:
image: postgres
environment:
- POSTGRES_PASSWORD=insecure
healthcheck:
test: ["CMD", "pg_isready", "-U", "postgres"]
interval: 5s
timeout: 5s
orbit:
build:
context: .
args:
RELEASE: "docker-compose"
environment:
- DATABASE_USERNAME=postgres
- DATABASE_PASSWORD=insecure
- DATABASE_HOST=db
- DATABASE_NAME=postgres
- DATABASE_DISABLE_SSL=insecure-yes
- PHX_HOST=localhost
- SECRET_KEY_BASE=/insecure/insecure/insecure/insecure/insecure/insecure/insecure/
- KEYCLOAK_ISSUER=https://login-sandbox.mbtace.com/auth/realms/MBTA
- KEYCLOAK_CLIENT_ID=docker_fake_keycloak_client_id
- KEYCLOAK_CLIENT_SECRET=docker_fake_keycloak_client_secret
- GLIDES_BUCKET=example.com
- GLIDES_PERSONNEL_PATHNAME=personnel/demo.csv
- GLIDES_RFID_PATHNAME=rfid/demo.csv
ports:
- 4001