-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathlocal.yml
42 lines (42 loc) · 1.18 KB
/
local.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
version: '2'
services:
aphelion-service:
image: finraos/aphelion-service:latest
environment:
- ASSUMED_ROLE_NAME=assumed_role_name
- ACCOUNT_ID_LIST=1234567891011, 1234567891012, 1234567891013, 1234567891014
- ASSUMED_ROLE_SESSION_NAME=limit_dashboard
- REGIONS=us-east-1, us-west-2
- AWS_DEFAULT_REGION=us-east-1
- REPORT_FILE_NAME=limits.csv
- CRON_REFRESH=* * * * *
- CRON_LIMITS=* * * * *
- MAIL_REPORTING_LIMIT=80
- MAIL_SUBJECT=Limits Reached
- MAIL_HOST=smtp
- MAIL_PORT=25
- MAIL_MESSAGE=Aphelion AWS limits auto generated report
volumes:
- /Users/$USER/.aws:/root/.aws
links:
- smtp
dashboard-service:
image: finraos/aphelion-dashboard-service:latest
web:
image: finraos/aphelion-web:latest
ports:
- 443:8443
restart: always
links:
- dashboard-service
- aphelion-service
smtp:
container_name: aphelion_local_smtp
image: amontaigu/fakesmtp
ports:
- 25
mem_limit: 50m
volumes:
- /Users/$USER/mail:/var/mail