edec0d0ca4
* feat(pairdrop): change config to support local domain * feat(paperless-ngx): change config to support local domain * feat(peppermint): change config to support local domain * feat(photoprism): change config to support local domain * feat(pihole): change config to support local domain * feat(plausible): change config to support local domain * feat(plex): change config to support local domain * feat(podfetch): change config to support local domain * feat(portainer): change config to support local domain * feat(privatebin): change config to support local domain * feat(prowlarr): change config to support local domain * feat(proxitok): change config to support local domain * feat(qbittorrent): change config to support local domain * feat(radarr): change config to support local domain * feat(readarr): change config to support local domain * feat(resilio-sync): change config to support local domain * feat(romm): change config to support local domain * feat(rss): change config to support local domain * feat(sabnzbd): change config to support local domain * feat(searxng): change config to support local domain * feat(send): change config to support local domain * feat(simplex-smp): change config to support local domain * feat(sonarr): change config to support local domain * feat(syncthing): change config to support local domain * feat(tasks-md): change config to support local domain * feat(tautulli): change config to support local domain * feat(teddit): change config to support local domain * feat(transmission): change config to support local domain * feat(tubearchivist): change config to support local domain * feat(umami): change config to support local domain * feat(uptime-kuma): change config to support local domain * feat(vaultwarden): change config to support local domain * feat(vikunja): change config to support local domain * feat(wg-easy): change config to support local domain * feat(wikijs): change config to support local domain * feat(wizarr): change config to support local domain * feat(your-spotify): change config to support local domain * chore: labels formatting issues
44 lines
1.9 KiB
YAML
44 lines
1.9 KiB
YAML
version: "3.7"
|
|
services:
|
|
resilio-sync:
|
|
image: lscr.io/linuxserver/resilio-sync:2.7.3
|
|
container_name: resilio-sync
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data/config:/config
|
|
- ${APP_DATA_DIR}/data/downloads:/downloads
|
|
- ${APP_DATA_DIR}/data/sync:/sync
|
|
ports:
|
|
- ${APP_PORT}:8888
|
|
- 55555:55555
|
|
restart: unless-stopped
|
|
networks:
|
|
- tipi_main_network
|
|
labels:
|
|
# Main
|
|
traefik.enable: true
|
|
traefik.http.middlewares.resilio-sync-web-redirect.redirectscheme.scheme: https
|
|
traefik.http.services.resilio-sync.loadbalancer.server.port: 8888
|
|
# Web
|
|
traefik.http.routers.resilio-sync-insecure.rule: Host(`${APP_DOMAIN}`)
|
|
traefik.http.routers.resilio-sync-insecure.entrypoints: web
|
|
traefik.http.routers.resilio-sync-insecure.service: resilio-sync
|
|
traefik.http.routers.resilio-sync-insecure.middlewares: resilio-sync-web-redirect
|
|
# Websecure
|
|
traefik.http.routers.resilio-sync.rule: Host(`${APP_DOMAIN}`)
|
|
traefik.http.routers.resilio-sync.entrypoints: websecure
|
|
traefik.http.routers.resilio-sync.service: resilio-sync
|
|
traefik.http.routers.resilio-sync.tls.certresolver: myresolver
|
|
# Local domain
|
|
traefik.http.routers.resilio-sync-local-insecure.rule: Host(`resilio-sync.${LOCAL_DOMAIN}`)
|
|
traefik.http.routers.resilio-sync-local-insecure.entrypoints: web
|
|
traefik.http.routers.resilio-sync-local-insecure.service: resilio-sync
|
|
traefik.http.routers.resilio-sync-local-insecure.middlewares: resilio-sync-web-redirect
|
|
# Local domain secure
|
|
traefik.http.routers.resilio-sync-local.rule: Host(`resilio-sync.${LOCAL_DOMAIN}`)
|
|
traefik.http.routers.resilio-sync-local.entrypoints: websecure
|
|
traefik.http.routers.resilio-sync-local.service: resilio-sync
|
|
traefik.http.routers.resilio-sync-local.tls: true
|