-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
58 lines (47 loc) · 1 KB
/
docker-compose.yml
File metadata and controls
58 lines (47 loc) · 1 KB
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
version: '2'
services:
piqu-original: &original
image: piqu:latest
build:
context: .
volumes:
- ./piqu-original:/myapp
ports:
- "4200:4200"
- "35729:35729"
piqu-updated: &updated
image: piqu:latest
build:
context: .
volumes:
- ./piqu-updated:/myapp
ports:
- "4200:4200"
- "35729:35729"
npm-original:
<<: *original
entrypoint: ['/usr/local/bin/npm']
bower-original:
<<: *original
entrypoint: ['/usr/local/bin/bower', '--allow-root']
server-original:
<<: *original
command: server --watcher polling
ports:
- "4200:4200"
- "35729:35729"
bash-updated:
<<: *updated
entrypoint: ['/bin/bash']
npm-updated:
<<: *updated
entrypoint: ['/usr/local/bin/npm']
bower-updated:
<<: *updated
entrypoint: ['/usr/local/bin/bower', '--allow-root']
server-updated:
<<: *updated
command: server --watcher polling
ports:
- "4200:4200"
- "35729:35729"