Skip to content

Instantly share code, notes, and snippets.

@thedava
Created March 19, 2020 19:59
Show Gist options
  • Save thedava/9ae394b26ecf8b21de25212dbfcb628b to your computer and use it in GitHub Desktop.
Save thedava/9ae394b26ecf8b21de25212dbfcb628b to your computer and use it in GitHub Desktop.
Example docker-compose file for BOINC client
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