-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
95 lines (94 loc) · 1.93 KB
/
docker-compose.yaml
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
version: '3.8'
services:
build:
tty: true
image: localhost/rodb:latest
build:
context: .
dockerfile: ./build/docker/service.Dockerfile
volumes:
- $PWD/configs:/etc/configs
command: --help
countries:
tty: true
depends_on:
- build
image: localhost/rodb:latest
command: --config=/var/config.yaml
ports:
- "3004:80"
volumes:
- $PWD/examples/countries:/var
japanese-dictionary:
tty: true
depends_on:
- build
build:
context: ./examples/japanese-dictionary
dockerfile: ./Dockerfile
args:
BASE_IMAGE: localhost/rodb:latest
user: root:root
ports:
- "3001:80"
- "3002:443"
volumes:
- japaneseDictionaryIndexes:/var
people:
tty: true
depends_on:
- build
build:
context: ./examples/people
dockerfile: ./Dockerfile
args:
BASE_IMAGE: localhost/rodb:latest
user: root:root
ports:
- "3003:80"
volumes:
- peopleIndexes:/var
zip-codes-tokyo:
tty: true
depends_on:
- build
build:
context: ./examples/zip-codes-tokyo
dockerfile: ./Dockerfile
args:
BASE_IMAGE: localhost/rodb:latest
ports:
- "3000:80"
e2e_tests:
tty: true
depends_on:
- countries
- japanese-dictionary
- people
- zip-codes-tokyo
build:
context: .
dockerfile: ./build/docker/e2e.Dockerfile
build:
tty: true
image: localhost/rodb:latest
build:
context: .
dockerfile: ./build/docker/service.Dockerfile
volumes:
- $PWD/configs:/etc/configs
command: --help
docs:
tty: true
image: jekyll/jekyll:3.8
command: jekyll serve --watch
working_dir: /srv/jekyll/docs
ports:
- "4000:4000"
volumes:
- $PWD:/srv/jekyll
- jekyllDependencies:/usr
volumes:
japaneseDictionaryIndexes:
peopleIndexes:
jekyllDependencies: