MasterpieceDockerCompose/folding@home/docker-compose.yml

17 lines
460 B
YAML
Raw Normal View History

2021-05-16 10:12:25 +02:00
version: "3"
services:
fah:
container_name: linuxserver-fah
image: ghcr.io/linuxserver/foldingathome
restart: unless-stopped
ports:
- ${FAH_PORT:-7396}:7396
env_file: .env
volumes:
- ${FAH_DATA:-/home/docker/fah/data}:/config
healthcheck:
test: ["curl --silent --fail http://localhost:${FAH_PORT:-7396} || exit 1"]
interval: 1m30s
timeout: 10s
retries: 3
start_period: 10s