Created
March 19, 2020 19:59
-
-
Save thedava/9ae394b26ecf8b21de25212dbfcb628b to your computer and use it in GitHub Desktop.
Example docker-compose file for BOINC client
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
boinc: | |
image: boinc/client | |
container_name: boinc | |
restart: always | |
network_mode: host | |
pid: host | |
volumes: | |
- boinc:/var/lib/boinc | |
environment: | |
- BOINC_GUI_RPC_PASSWORD=PASSWORT | |
- BOINC_CMD_LINE_OPTIONS=--allow_remote_gui_rpc | |
volumes: | |
boinc: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment