-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
46 lines (42 loc) · 1.14 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
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:
- 4000:4000
links:
- redis
# 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
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
redis:
image: redis:alpine
container_name: redis_comms
ports:
- 6379:6379