18 lines
424 B
YAML
18 lines
424 B
YAML
services:
|
|
syncyomi:
|
|
container_name: syncyomi
|
|
image: ghcr.io/syncyomi/syncyomi:v1.1.4
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=${TZ}
|
|
volumes:
|
|
- ${APPDATA_PATH}/syncyomi/config:/config
|
|
- ${APPDATA_PATH}/syncyomi/log:/log
|
|
ports:
|
|
- ${PORT}:8282
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:8282"]
|
|
interval: 10s
|
|
timeout: 10s
|
|
retries: 3
|