-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
99 lines (88 loc) · 1.94 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
version: '3.7'
services:
learnyounode:
build: images/mylearnyounode
volumes:
- type: bind
source: ${PWD}/apps/learnyounode
target: /app
- /etc/localtime:/etc/localtime:ro
javascripting:
build: images/myjavascripting
volumes:
- type: bind
source: ${PWD}/apps/javascripting
target: /app
- /etc/localtime:/etc/localtime:ro
nodejs:
build: images/mynode
ports:
- "80:3000"
depends_on:
- mongo
- mongo-express
volumes:
- type: bind
source: ${PWD}/apps/nodeapi
target: /app
- /etc/localtime:/etc/localtime:ro
networks:
- api
mongo:
image: mongo
networks:
- api
mongo-express:
image: mongo-express
ports:
- "8081:8081"
depends_on:
- mongo
networks:
- api
creationart:
build: images/myapache
ports:
- "80:80"
volumes:
- type: bind
source: ${PWD}/apps/creationart
target: /var/www/html/creationart
- /etc/localtime:/etc/localtime:ro
phpcs-configurator:
build: images/myimage
volumes:
- type: bind
source: ${PWD}/apps/phpcs-configurator
target: /app
- /etc/localtime:/etc/localtime:ro
localizer:
build: images/myimage
volumes:
- type: bind
source: ${PWD}/apps/localizer
target: /app
- /etc/localtime:/etc/localtime:ro
mypsr:
build: images/myimage
volumes:
- type: bind
source: ${PWD}/apps/mypsr
target: /app
- /etc/localtime:/etc/localtime:ro
fizzbuzzkata:
build: images/myimage
volumes:
- type: bind
source: ${PWD}/apps/fizzbuzzkata
target: /app
- /etc/localtime:/etc/localtime:ro
my-first-ci-test:
build: images/myimage
volumes:
- type: bind
source: ${PWD}/apps/my-first-ci-test
target: /app
- /etc/localtime:/etc/localtime:ro
networks:
api: