Archive projects
This commit is contained in:
30
.archived/syncyomi/docker-compose.yml
Normal file
30
.archived/syncyomi/docker-compose.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
services:
|
||||
syncyomi:
|
||||
container_name: syncyomi
|
||||
image: ghcr.io/syncyomi/syncyomi:v1.1.4
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
- traefik-instance=${TRAEFIK_INSTANCE}
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.syncyomi.rule=Host(`${TRAEFIK_DOMAIN}`)
|
||||
- traefik.http.routers.syncyomi.entrypoints=websecure
|
||||
- traefik.http.services.syncyomi.loadbalancer.server.port=8282
|
||||
environment:
|
||||
- TZ=${TZ}
|
||||
volumes:
|
||||
- ${APPDATA_PATH}/syncyomi/config:/config
|
||||
- ${APPDATA_PATH}/syncyomi/log:/log
|
||||
ports:
|
||||
- ${PORT}:8282
|
||||
networks:
|
||||
- frontend
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:8282"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
start_period: 10s
|
||||
|
||||
networks:
|
||||
frontend:
|
||||
external: true
|
||||
Reference in New Issue
Block a user