mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
24 lines
612 B
YAML
24 lines
612 B
YAML
# gotchas:
|
|
# - 'pid: host' allows boinc to determine nonboinc processes for cpu percentages
|
|
# and exclusive applications
|
|
#
|
|
# sources:
|
|
# - https://hub.docker.com/r/boinc/client
|
|
# - https://docs.docker.com/compose/compose-file/compose-file-v2/
|
|
|
|
version: '2'
|
|
services:
|
|
client:
|
|
image: boinc/client:arm32v7
|
|
container_name: boinc-client
|
|
restart: always
|
|
network_mode: host
|
|
pid: host
|
|
volumes:
|
|
- ./data:/var/lib/boinc
|
|
environment:
|
|
- BOINC_CMD_LINE_OPTIONS=--allow_remote_gui_rpc
|
|
- BOINC_GUI_RPC_PASSWORD=123
|
|
- BOINC_REMOTE_HOST=192.168.1.1
|
|
- TZ=Europe/Dublin
|