This repository has been archived by the owner on Dec 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
/
docker-compose.yarn.yml
executable file
·74 lines (74 loc) · 2.07 KB
/
docker-compose.yarn.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
version: '3.3'
services:
yarn_zen:
image: node:carbon
working_dir: /usr/src/app
command: sh -c "git config --global url.\"https://github.com/\".insteadOf git://github.com/ && yarn"
volumes:
- ./workspace-zen/cp-zen-platform:/usr/src/app:Z
yarn_frontend:
image: node:carbon
working_dir: /usr/src/app
command: yarn
volumes:
- ./workspace-zen/cp-zen-frontend:/usr/src/app:Z
yarn_badges:
image: node:carbon
working_dir: /usr/src/app
command: yarn
volumes:
- ./workspace-zen/cp-badges-service:/usr/src/app:Z
yarn_dojos:
image: node:carbon
working_dir: /usr/src/app
command: yarn
volumes:
- ./workspace-zen/cp-dojos-service:/usr/src/app:Z
yarn_events:
image: node:carbon
working_dir: /usr/src/app
command: yarn
volumes:
- ./workspace-zen/cp-events-service:/usr/src/app:Z
yarn_eventbrite:
image: node:carbon
working_dir: /usr/src/app
command: yarn
volumes:
- ./workspace-zen/cp-eventbrite-service:/usr/src/app:Z
yarn_organisations:
image: node:carbon
working_dir: /usr/src/app
command: yarn
volumes:
- ./workspace-zen/cp-organisations-service:/usr/src/app:Z
yarn_users:
image: node:carbon
working_dir: /usr/src/app
command: yarn
volumes:
- ./workspace-zen/cp-users-service:/usr/src/app:Z
yarn_events_service:
image: node:carbon
working_dir: /usr/src/app
command: yarn
volumes:
- ./workspace-zen/services/events-service:/usr/src/app:Z
yarn_users_service:
image: node:carbon
working_dir: /usr/src/app
command: yarn
volumes:
- ./workspace-zen/services/users-service:/usr/src/app:Z
yarn_clubs_service:
image: node:carbon
working_dir: /usr/src/app
command: yarn
volumes:
- ./workspace-zen/services/clubs-service:/usr/src/app:Z
yarn_email_service:
image: node:carbon
working_dir: /usr/src/app
command: yarn
volumes:
- ./workspace-zen/services/cp-email-service:/usr/src/app:Z