-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.prod.yml
52 lines (48 loc) · 1.4 KB
/
docker-compose.prod.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
52
version: '3.4'
services:
isitweeka:
image: ghcr.io/gum-joe/isitweeka
build:
context: .
dockerfile: ./server/Dockerfile
environment:
NODE_ENV: production
IIWA_REDIS_URL: redis://redis_comms:6379
ports:
- 80:4000
links:
- redis
volumes:
- /opt/isitweeka/logs-server:/usr/src/app/server/logs
service-kech:
image: ghcr.io/gum-joe/isitweeka-service-kech
build:
context: .
dockerfile: ./packages/@isitweeka/service-kech/Dockerfile
environment:
NODE_ENV: production
IIWA_REDIS_URL: redis://redis_comms:6379
links:
- redis
volumes:
- /opt/isitweeka/logs-service-kech:/usr/src/app/packages/@isitweeka/service-kech/logs
service-eventbrite:
image: ghcr.io/gum-joe/isitweeka-service-eventbrite
build:
context: .
dockerfile: ./packages/@isitweeka/service-eventbrite/Dockerfile
environment:
NODE_ENV: production
IIWA_REDIS_URL: redis://redis_comms:6379
IIWA_EVENTBRITE_ORG_ID: ${IIWA_EVENTBRITE_ORG_ID}
IIWA_EVENTBRITE_EVENT_ID: ${IIWA_EVENTBRITE_EVENT_ID}
IIWA_EVENTBRITE_ACCESS_TOKEN: ${IIWA_EVENTBRITE_ACCESS_TOKEN}
links:
- redis
volumes:
- /opt/isitweeka/logs-service-eventbrite:/usr/src/app/packages/@isitweeka/service-eventbrite/logs
redis:
image: redis:alpine
container_name: redis_comms
ports:
- 6379:6379