19 lines
447 B
YAML
19 lines
447 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: 5s
|
|
retries: 3
|
|
start_period: 10s
|