-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
51 lines (46 loc) · 1.35 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
50
51
version: "3.7"
networks:
hub-platform-net:
name: hub-platform-net
driver: bridge
db-net:
name: db-net
driver: bridge
services:
mongo:
image: mongo:latest
container_name: mongo.local
hostname: mongo.local
ports:
- 27017:27017
networks:
- db-net
gatekeeper:
image: cjww-development/gatekeeper:latest
container_name: gatekeeper.local
hostname: gatekeeper.local
ports:
- 5678:80
volumes:
- ~/logs:/opt/docker/gatekeeper-$VERSION/logs
- $HOME/.aws:/root/.aws
environment:
# VERSION: $VERSION
EMAIL_FROM: "test@email.com"
MONGO_URI: "mongodb://mongo.local"
APP_SECRET: "23817cc7d0e6460e9c1515aa4047b29b"
ENC_KEY: "23817cc7d0e6460e9c1515aa4047b29b"
MFA_ISSUER: "Gatekeeper (docker)"
SMS_SENDER_ID: "SmsVerify"
WKC_ISSUER: "http://localhost:5678"
#Email settings
EMAIL_PROVIDER: "ses" #Can be "ses" or "mail-gun"
AWS_IDENTITY_ARN: "arn:aws:ses:<your-region>:<account-the-ses-identity-lives-in>:identity/<the-identity>"
#If the above is ses
AWS_REGION: "eu-west-2" #Or what ever region you're running SES from
#If the above is mail-gun
MAILGUN_API_KEY: "" #Obtained from the mailgun console
MAILGUN_URL: "" #Obtained from the mailgun console
networks:
- hub-platform-net
- db-net