Remove folding-at-home
New server location isn't especially ventilated, so heat is an issue. I'm sorry.
This commit is contained in:
parent
c435ad1ba8
commit
7c0d78ee9d
3 changed files with 0 additions and 41 deletions
|
@ -1,15 +0,0 @@
|
|||
version: "2.3"
|
||||
|
||||
services:
|
||||
folding-at-home:
|
||||
image: linuxserver/foldingathome:latest
|
||||
cpus: 0.75
|
||||
environment:
|
||||
- TZ=Europe/London
|
||||
- PUID={{ docker_user.id }}
|
||||
- GUID={{ docker_user.id }}
|
||||
volumes:
|
||||
- ./config:/config
|
||||
ports:
|
||||
- 7396:7396
|
||||
restart: unless-stopped
|
|
@ -1,23 +0,0 @@
|
|||
- name: Create folding-at-home directory
|
||||
file:
|
||||
path: /opt/folding-at-home
|
||||
state: directory
|
||||
owner: "{{ docker_user.name }}"
|
||||
mode: "{{ docker_compose_directory_mask }}"
|
||||
become: true
|
||||
|
||||
- name: Install folding@home compose file
|
||||
template:
|
||||
src: files/folding-at-home/docker-compose.yml
|
||||
dest: /opt/folding-at-home/docker-compose.yml
|
||||
mode: "{{ docker_compose_file_mask }}"
|
||||
owner: "{{ docker_user.name }}"
|
||||
validate: /usr/bin/docker-compose -f %s config
|
||||
register: compose_file
|
||||
become: true
|
||||
|
||||
- name: restart folding-at-home
|
||||
shell:
|
||||
chdir: /opt/folding-at-home
|
||||
cmd: "{{ docker_update_command }}"
|
||||
when: compose_file.changed
|
|
@ -1,9 +1,6 @@
|
|||
- name: Install calibre
|
||||
include: calibre.yml
|
||||
|
||||
- name: Install folding-at-home
|
||||
include: folding-at-home.yml
|
||||
|
||||
- name: Install gitea
|
||||
include: gitea.yml
|
||||
|
||||
|
|
Loading…
Reference in a new issue