https://github.com/techwolf12/boinc
Up-To-Date Boinc for Docker with Kubernetes
https://github.com/techwolf12/boinc
Last synced: 2 months ago
JSON representation
Up-To-Date Boinc for Docker with Kubernetes
- Host: GitHub
- URL: https://github.com/techwolf12/boinc
- Owner: Techwolf12
- License: mit
- Created: 2020-03-04T22:27:38.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-04T22:30:36.000Z (over 5 years ago)
- Last Synced: 2025-03-20T06:47:50.892Z (3 months ago)
- Language: Dockerfile
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Boinc for Docker
An up to date version of Boinc for Docker including a kubernetes file# Usage
```
docker run --name=boinc -d techwolf12/boinc:stable \
-attach_project boinc.bakerlab.org/rosetta/ \
```# Kubernetes
Kubernetes can be used as such (do add your key to the boinc.yaml file first):```
kubectl create namespace boinc
kubectl -n boinc apply -f boinc.yaml
```
To scale it up/down:
```
kubectl -n boinc scale rc boinc-workers --replicas=2
```
And to remove it:
```
kubectl -n boinc delete -f boinc.yaml
```