mirror of https://github.com/tiyn/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
270 B
13 lines
270 B
5 years ago
|
#!/bin/sh
|
||
|
docker stop folding-at-home
|
||
|
docker rm folding-at-home
|
||
|
docker pull johnktims/folding-at-home
|
||
|
docker run --name folding-at-home \
|
||
|
--restart unless-stopped \
|
||
|
-it \
|
||
|
-p 7396:7396 \
|
||
|
-d johnktims/folding-at-home \
|
||
|
--user=default \
|
||
|
--power=full \
|
||
|
--team=000000
|