17 lines
460 B
YAML
17 lines
460 B
YAML
|
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
|