diff --git a/apps/seedsync/config.json b/apps/seedsync/config.json new file mode 100644 index 00000000..af28b158 --- /dev/null +++ b/apps/seedsync/config.json @@ -0,0 +1,16 @@ +{ + "name": "SeedSync", + "available": true, + "port": 8800, + "exposable": true, + "id": "seedsync", + "description": "SeedSync is a tool to sync the files on a remote Linux server (like your seedbox, for example). It uses LFTP to transfer files fast!", + "tipi_version": 1, + "version": "0.8.6", + "categories": ["utilities"], + "short_desc": "SeedSync is a tool to sync the files on a remote Linux server.", + "author": "https://github.com/ipsingh06", + "source": "https://github.com/ipsingh06/seedsync", + "website": "https://ipsingh06.github.io/seedsync/", + "form_fields": [] + } \ No newline at end of file diff --git a/apps/seedsync/docker-compose.yml b/apps/seedsync/docker-compose.yml new file mode 100644 index 00000000..47efbc49 --- /dev/null +++ b/apps/seedsync/docker-compose.yml @@ -0,0 +1,40 @@ +version: "3.9" +services: + my-app: seedsync + container_name: seedsync + image: ipsingh06/seedsync:0.8.6 + environment: + - TZ=${TZ} + volumes: + - ${APP_DATA_DIR}/data/config:/config # + - ${APP_DATA_DIR}/media/torrents/complete:/downloads + ports: + - ${APP_PORT}:8800 + restart: unless-stopped + networks: + - tipi_main_network + labels: + # Main + traefik.enable: true + traefik.http.middlewares.seedsync-web-redirect.redirectscheme.scheme: https + traefik.http.services.seedsync.loadbalancer.server.port: 8080 + # Web + traefik.http.routers.seedsync-insecure.rule: Host(`${APP_DOMAIN}`) + traefik.http.routers.seedsync-insecure.entrypoints: web + traefik.http.routers.seedsync-insecure.service: seedsync + traefik.http.routers.seedsync-insecure.middlewares: seedsync-web-redirect + # Websecure + traefik.http.routers.seedsync.rule: Host(`${APP_DOMAIN}`) + traefik.http.routers.seedsync.entrypoints: websecure + traefik.http.routers.seedsync.service: seedsync + traefik.http.routers.seedsync.tls.certresolver: myresolver + # Local domain + traefik.http.routers.seedsync-local-insecure.rule: Host(`seedsync.${LOCAL_DOMAIN}`) + traefik.http.routers.seedsync-local-insecure.entrypoints: web + traefik.http.routers.seedsync-local-insecure.service: seedsync + traefik.http.routers.seedsync-local-insecure.middlewares: seedsync-web-redirect + # Local domain secure + traefik.http.routers.seedsync-local.rule: Host(`seedsync.${LOCAL_DOMAIN}`) + traefik.http.routers.seedsync-local.entrypoints: websecure + traefik.http.routers.seedsync-local.service: seedsync + traefik.http.routers.seedsync-local.tls: true \ No newline at end of file diff --git a/apps/seedsync/metadata/description.md b/apps/seedsync/metadata/description.md new file mode 100644 index 00000000..d4e36fa5 --- /dev/null +++ b/apps/seedsync/metadata/description.md @@ -0,0 +1,10 @@ +# SeedSync - Sync your seedbox. Fast. + +SeedSync is a tool to sync the files on a remote Linux server (like your seedbox, for example). It uses LFTP to transfer files fast! + +## Folder Info + +| Root Folder | Container Folder | +|---------------------------------------|------------------| +| /runtipi/app-data/seedsync/data/config| /config | +| /runtipi/media/torrents/complete | /downloads | diff --git a/apps/seedsync/metadata/logo.jpg b/apps/seedsync/metadata/logo.jpg new file mode 100644 index 00000000..56503be7 Binary files /dev/null and b/apps/seedsync/metadata/logo.jpg differ