forked from sarboc/easi-app-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (52 loc) · 1.41 KB
/
docker-compose.yml
File metadata and controls
52 lines (52 loc) · 1.41 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
version: '3.7'
services:
db:
image: postgres:11.6
command: ['postgres', '-c', 'log_statement=all']
db_migrate:
image: easi-db-migrate:latest
environment:
- FLYWAY_USER=postgres
- FLYWAY_PASSWORD=
- FLYWAY_URL=jdbc:postgresql://db/postgres
depends_on:
- db
easi:
environment:
- APP_ENV
- APPLICATION_VERSION
- APPLICATION_DATETIME
- APPLICATION_TS
- CLIENT_PROTOCOL=http
- CLIENT_DOMAIN=localhost
- CLIENT_PORT=3000
- CLIENT_HOSTNAME=localhost:3000
- CLIENT_ADDRESS=http://localhost:3000
- API_PORT=8080
- OKTA_CLIENT_ID=0oa2e913coDQeG19S297
- OKTA_ISSUER=https://test.idp.idm.cms.gov/oauth2/aus2e96etlbFPnBHt297
- GRT_EMAIL=success@simulator.amazonses.com
- EMAIL_TEMPLATE_DIR=./pkg/email/templates
- AWS_REGION=us-west-2
- AWS_SES_SOURCE=no-reply-$APP_ENV@info.easi.cms.gov
- AWS_SES_SOURCE_ARN
- AWS_S3_FILE_UPLOAD_BUCKET=easi-app-test-file-uploads
- PGHOST=db
- PGPORT=5432
- PGDATABASE=postgres
- PGUSER=postgres
- PGPASS=""
- PGSSLMODE=disable
- FLAG_SOURCE
- LD_SDK_KEY
- LD_TIMEOUT_SECONDS=30
- LD_ENV_USER
- LAMBDA_FUNCTION_PRINCE=handler
- LAMBDA_ENDPOINT=http://prince:9001
- SERVER_CERT
- SERVER_KEY
depends_on:
- db_migrate
easi_client:
image: easi-frontend:latest