docker-compose.yml (328B)
1 networks: 2 jci_net: 3 services: 4 jci_server: 5 build: . 6 command: bash /app/run_server.sh 7 volumes: 8 - ./:/app 9 networks: 10 - jci_net 11 jci_runner: 12 build: . 13 command: bash /app/run_runner.sh 14 volumes: 15 - ./:/app 16 - /var/run/docker.sock:/var/run/docker.sock 17 networks: 18 - jci_net