forked from vikramsomavaram/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
52 lines (47 loc) · 984 Bytes
/
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
52
version: "3"
services:
graphserver:
image: tribecommerce/platform:latest
container_name: GraphServer
volumes:
- ~/creds:/creds
environment:
- GOOGLE_APPLICATION_CREDENTIALS=/creds/key.json
ports:
- 8080:8080
networks:
- tribe_network
oauthserver:
image: tribecommerce/platform:latest
container_name: OAuthServer
entrypoint: oauthserver
volumes:
- ~/creds:/creds
environment:
- GOOGLE_APPLICATION_CREDENTIALS=/creds/key.json
ports:
- 8000:8080
networks:
- tribe_network
mongodb:
image: mongo:4.2
container_name: MongoDB
volumes:
- ~/mongo-data:/data/db
ports:
- 27017:27017
networks:
- tribe_network
redis:
image: redis:5.0.5-alpine
container_name: Redis
volumes:
- ~/redis-data:/data
ports:
- 6379:6379
networks:
- tribe_network
networks:
tribe_network:
external:
name: tribe_network