-
Notifications
You must be signed in to change notification settings - Fork 113
/
docker-compose-aws-logging.yml
46 lines (46 loc) · 1.28 KB
/
docker-compose-aws-logging.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
version: '3'
services:
redis:
extends:
file: common-services.yml
service: redis_common
logging:
driver: awslogs
options:
awslogs-region: ${CANARYTOKENS_LOGGING_REGION:-eu-west-1}
awslogs-group: ${CANARYTOKENS_LOGGING_GROUP:-canarytokens}
awslogs-stream: redis
frontend:
extends:
file: common-services.yml
service: frontend_common
container_name: frontend
logging:
driver: awslogs
options:
awslogs-region: ${CANARYTOKENS_LOGGING_REGION:-eu-west-1}
awslogs-group: ${CANARYTOKENS_LOGGING_GROUP:-canarytokens}
awslogs-stream: frontend
switchboard:
extends:
file: common-services.yml
service: switchboard_common
container_name: switchboard
logging:
driver: awslogs
options:
awslogs-region: ${CANARYTOKENS_LOGGING_REGION:-eu-west-1}
awslogs-group: ${CANARYTOKENS_LOGGING_GROUP:-canarytokens}
awslogs-stream: switchboard
nginx:
extends:
file: common-services.yml
service: nginx_common
logging:
driver: awslogs
options:
awslogs-region: ${CANARYTOKENS_LOGGING_REGION:-eu-west-1}
awslogs-group: ${CANARYTOKENS_LOGGING_GROUP:-canarytokens}
awslogs-stream: nginx
volumes:
log-volume: