Expansion on LinuxServer/boinc image to include NUT for suspending while on UPS battery
3.9K
This is an expansion on LinuxServer/boinc image to include nut-client for suspending while on UPS battery and resuming tasks when power is back online.
Here are some example snippets to help you get started creating a container.
docker create \
--name=boinc \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
-e GUAC_USER=abc `#optional` \
-e GUAC_PASS=900150983cd24fb0d6963f7d28e17f72 `#optional` \
-e NUT_UPS=upsName \
-e NUT_SERVER=192.168.1.10 \
-e NUT_USER=user \
-e NUT_SECRET=secret \
-e HOSTNAME=boinc01 `#optional` \
-p 8080:8080 \
-v /path/to/data:/config \
--device /dev/dri:/dev/dri `#optional` \
--restart unless-stopped \
linuxserver/boinc
Compatible with docker-compose v2 schemas.
---
version: "2"
services:
boinc:
image: linuxserver/boinc
container_name: boinc
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
- GUAC_USER=abc #optional
- GUAC_PASS=900150983cd24fb0d6963f7d28e17f72 #optional
- NUT_UPS=upsName
- NUT_SERVER=192.168.1.10
- NUT_USER=user
- NUT_SECRET=secret
- HOSTNAME=boinc01 #optional
volumes:
- /path/to/data:/config
ports:
- 8080:8080
devices:
- /dev/dri:/dev/dri #optional
restart: unless-stopped
Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate <external>:<internal> respectively. For example, -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 outside the container.
| Parameter | Function |
|---|---|
-p 8080 | Boinc desktop gui. |
-e PUID=1000 | for UserID - see below for explanation |
-e PGID=1000 | for GroupID - see below for explanation |
-e TZ=Europe/London | Specify a timezone to use EG Europe/London. |
-e GUAC_USER=abc | Username for the BOINC desktop gui. |
-e GUAC_PASS=900150983cd24fb0d6963f7d28e17f72 | Password's md5 hash for the BOINC desktop gui. |
-e NUT_UPS=upsName | Name of ups on NUT server. |
-e NUT_SERVER=192.168.1.10 | IP Address or hostname of NUT server. |
-e NUT_USER=user | Username on NUT server. |
-e NUT_SECRET=secret | Password for user on NUT server. |
-e HOSTNAME=boinc01 | Experimental - Set instance hostname for BOINC. |
-v /config | Where BOINC should store its database and config. |
--device /dev/dri | Only needed if you want to use your Intel GPU (vaapi). |
You can set any environment variable from a file by using a special prepend FILE__.
As an example:
-e FILE__PASSWORD=/run/secrets/mysecretpassword
Will set the environment variable PASSWORD based on the contents of the /run/secrets/mysecretpassword file.
When using volumes (-v flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user PUID and group PGID.
Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic.
In this instance PUID=1000 and PGID=1000, to find yours use id user as below:
$ id username
uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup)
This image sets up the BOINC client and manager and makes its interface available via Guacamole server in the browser. The interface is available at http://your-ip:8080.
By default, there is no username or password set. Custom usernames and passwords can be set via optional docker environment variables. Keep in mind that the GUACPASS variable accepts the md5 hash of the desired password (the sample above is the hash for abc). The md5 hash can be generated by either of the following commands:
echo -n password | openssl md5
printf '%s' password | md5sum
You can access advanced features of the Guacamole remote desktop using ctrl+alt+shift enabling you to use remote copy/paste and different languages.
It is recommended to switch to Advanced View in the top menu, because the Computing Preferences don't seem to be displayed in Simple View.
Sometimes, the pop-up windows may open in a tiny box in the upper left corner of the screen. When that happens, you can find the corner and resize them.
Hardware acceleration users for Intel Quicksync will need to mount their /dev/dri video device inside of the container by passing the following command when running or creating the container:
--device=/dev/dri:/dev/dri
We will automatically ensure the abc user inside of the container has the proper permissions to access this device.
Hardware acceleration users for Nvidia will need to install the container runtime provided by Nvidia on their host, instructions can be found here:
https://github.com/NVIDIA/nvidia-docker
We automatically add the necessary environment variable that will utilise all the features available on a GPU on the host. Once nvidia-docker is installed on your host you will need to re/create the docker container with the nvidia container runtime --runtime=nvidia and add an environment variable -e NVIDIA_VISIBLE_DEVICES=all (can also be set to a specific gpu's UUID, this can be discovered by running nvidia-smi --query-gpu=gpu_name,gpu_uuid --format=csv ). NVIDIA automatically mounts the GPU and drivers from your host into the BOINC docker container.
docker exec -it boinc /bin/bashdocker logs -f boincdocker inspect -f '{{ index .Config.Labels "build_version" }}' boincdocker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/boincMost of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (ie. nextcloud, plex), we do not recommend or support updating apps inside the container. Please consult the Application Setup section above to see if it is recommended for the image.
Below are the instructions for updating containers:
docker pull linuxserver/boincdocker stop boincdocker rm boinc/config folder and settings will be preserved)docker start boincdocker image prunedocker-compose pull
docker-compose pull boincdocker-compose up -d
docker-compose up -d boincdocker image pruneContent type
Image
Digest
Size
396 MB
Last updated
over 4 years ago
docker pull gpocali/docker-boinc