forked from civiform/civiform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
49 lines (44 loc) · 1.12 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Use postgres/example user/password credentials
version: '3.1'
services:
localstack:
image: localstack/localstack
container_name: localstack
ports:
- 4566:4566
environment:
- SERVICES=s3,ses
db:
image: postgres:12.5
restart: always
container_name: postgres
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: example
civiform:
image: civiform
restart: always
container_name: civiform
links:
- "db:database"
ports:
- 9000:9000
- 8457:8457
environment:
- AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID:-test}
- AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY:-test}
- AWS_SESSION_TOKEN=${AWS_SESSION_TOKEN:-test}
- AWS_REGION
- AWS_SES_SENDER
- AWS_S3_BUCKET_NAME
- IDCS_CLIENT_ID
- IDCS_SECRET
- ADFS_CLIENT_ID
- ADFS_SECRET
- CF_OPTIONAL_QUESTIONS
- WHITELABEL_SMALL_LOGO_URL
- WHITELABEL_LOGO_WITH_NAME_URL
- WHITELABEL_CIVIC_ENTITY_SHORT_NAME
- WHITELABEL_CIVIC_ENTITY_FULL_NAME
command: -jvm-debug "*:8457" ~run -Dconfig.file=conf/application.dev.conf