-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
48 lines (48 loc) · 845 Bytes
/
docker-compose.yml
File metadata and controls
48 lines (48 loc) · 845 Bytes
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
services:
www:
image: nginx
ports:
- "80:80"
volumes:
- ./nginx:/etc/nginx/conf.d:ro
restart: always
depends_on:
- api
- db
- web
logging:
driver: "json-file"
options:
max-size: "200MB"
api:
image: openrct2/openrct2.api
volumes:
- ./.openrct2:/root/.openrct2
restart: always
depends_on:
- db
logging:
driver: "json-file"
options:
max-size: "200MB"
web:
image: openrct2/openrct2.webui
restart: always
depends_on:
- api
logging:
driver: "json-file"
options:
max-size: "200MB"
db:
image: rethinkdb
volumes:
- rethinkdb_data:/data
restart: always
logging:
driver: "json-file"
options:
max-size: "200MB"
volumes:
rethinkdb_data:
external: true