-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
65 lines (65 loc) · 1.49 KB
/
docker-compose.yaml
File metadata and controls
65 lines (65 loc) · 1.49 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
59
60
61
62
63
64
65
version: "3"
services:
schoolscraping:
build:
dockerfile: ./utils/school_scraping/Dockerfile
context: ./
image: rakaiseto/schoolscraping:${TAG:-latest}
container_name: schoolscraping
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "50"
rpc_test:
build:
dockerfile: ./RPC/RPCTest/Dockerfile
context: ./
image: rakaiseto/rpc_test:${TAG:-latest}
container_name: rpc_test
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "50"
ports:
- "20000:20000"
rpc_global_data:
build:
dockerfile: ./RPC/RPCGlobalData/Dockerfile
context: ./
image: rakaiseto/rpc_global_data:${TAG:-latest}
container_name: rpc_global_data
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "50"
ports:
- "20010:20010"
rpc_root_admin_web:
build:
dockerfile: ./RPC/RPCRootAdminWeb/Dockerfile
context: ./
image: rakaiseto/rpc_root_admin_web:${TAG:-latest}
container_name: rpc_root_admin_web
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "50"
ports:
- "20020:20020"
api:
build:
dockerfile: ./APP/API/Dockerfile
context: ./
image: rakaiseto/api:${TAG:-latest}
container_name: api
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "50"
ports:
- "10000:10000"