JudgeServer/docker-compose.example.yml

26 lines
724 B
YAML
Raw Normal View History

2017-12-06 11:50:15 +08:00
version: "3"
2016-10-10 00:00:54 +08:00
services:
judge_server:
image: registry.cn-hangzhou.aliyuncs.com/onlinejudge/judge_server
2016-10-10 00:00:54 +08:00
read_only: true
2016-10-16 03:38:45 +08:00
cap_drop:
- SETPCAP
- MKNOD
- NET_BIND_SERVICE
- SYS_CHROOT
- SETFCAP
- FSETID
2016-10-10 00:00:54 +08:00
tmpfs:
- /tmp
volumes:
- $PWD/tests/test_case:/test_case:ro
2017-12-06 11:50:15 +08:00
- $PWD/log:/log
2017-12-22 00:39:14 +08:00
# - $PWD/server:/code:ro
2018-05-09 07:20:49 +08:00
- $PWD/run:/judger
2016-10-10 00:00:54 +08:00
environment:
- BACKEND_URL=http://backend:80/api/judge_server_heartbeat
2017-12-06 11:50:15 +08:00
- SERVICE_URL=http://judge-server:12358
- TOKEN=YOUR_TOKEN_HERE
2016-10-10 00:00:54 +08:00
ports:
- "0.0.0.0:12358:8080"