-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
44 lines (41 loc) · 1.02 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
version: "3.9"
services:
evaluator-dev:
build:
context: .
dockerfile: ./src/InglemoorCodingComputing.Evaluator/Dockerfile
container_name: ihs-ccc-eval-dev
ports:
- 1313:80
restart: always
volumes:
- ./data/ihs-ccc-eval:/data
environment:
- ExecutionEndpoint=http://exec-runner:80,1234
- JWT__Secret=${JWT_Secret}
- Admin__Password=${Admin_Password}
- XDG_DATA_HOME=/data
exec-runner:
build:
context: .
dockerfile: ./src/InglemoorCodingComputing.Evaluator.ExecutionRunner/Dockerfile
container_name: ihs-ccc-eval-exec-runner-dev
restart: always
ports:
- 1989:80
environment:
- Endpoint=http://piston:2000
- Key=1234
piston:
image: ghcr.io/engineer-man/piston
container_name: piston_api
restart: always
ports:
- 2000:2000
volumes:
- ./data/piston/packages:/piston/packages
tmpfs:
- /piston/jobs:exec,uid=1000,gid=1000,mode=711
- /tmp:exec
volumes:
ihs-ccc-eval: