piston / docker-compose.yml
Prajith04's picture
Upload 2 files
4620832 verified
raw
history blame
890 Bytes
x-logging:
&default-logging
logging:
driver: json-file
options:
max-size: 100M
services:
server:
image: judge0/judge0:1.13.1
volumes:
- ./judge0.conf:/judge0.conf:ro
ports:
- "2358:2358"
privileged: true
<<: *default-logging
restart: always
workers:
image: judge0/judge0:1.13.1
command: ["./scripts/workers"]
volumes:
- ./judge0.conf:/judge0.conf:ro
privileged: true
<<: *default-logging
restart: always
db:
image: postgres:16.2
env_file: judge0.conf
volumes:
- data:/var/lib/postgresql/data/
<<: *default-logging
restart: always
redis:
image: redis:7.2.4
command: [
"bash", "-c",
'docker-entrypoint.sh --appendonly no --requirepass "$$REDIS_PASSWORD"'
]
env_file: judge0.conf
<<: *default-logging
restart: always
volumes:
data: