2021-05-17 12:45:18 +02:00
|
|
|
version: "3.4"
|
2021-05-16 10:12:25 +02:00
|
|
|
services:
|
|
|
|
fah:
|
|
|
|
container_name: linuxserver-fah
|
|
|
|
image: ghcr.io/linuxserver/foldingathome
|
|
|
|
restart: unless-stopped
|
|
|
|
ports:
|
2021-05-17 12:45:18 +02:00
|
|
|
- ${FAH_WEBUI_PORT:-7396}:7396
|
2021-05-16 10:12:25 +02:00
|
|
|
env_file: .env
|
|
|
|
volumes:
|
2021-05-17 12:45:18 +02:00
|
|
|
- ${FAH_DATA:-/home/docker/folding@home/config}:/config
|
|
|
|
healthcheck: # se modificate la porta dell'interfaccia web, ricordatevi di cambiarla anche qua sotto
|
|
|
|
test: ["CMD", "curl", "-Ssf", http://localhost:7396"]
|
2021-05-16 10:12:25 +02:00
|
|
|
interval: 1m30s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 3
|
2021-05-17 12:45:18 +02:00
|
|
|
start_period: 1m
|