Merge branch 'DansNewLegs-master'
This commit is contained in:
commit
3563ac259a
33
apps/seedsync/config.json
Normal file
33
apps/seedsync/config.json
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
{
|
||||||
|
"$schema": "../schema.json",
|
||||||
|
"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": "Inderpreet Singh",
|
||||||
|
"source": "https://github.com/ipsingh06/seedsync",
|
||||||
|
"website": "https://ipsingh06.github.io/seedsync/",
|
||||||
|
"supported_architectures": ["amd64", "arm64"],
|
||||||
|
"form_fields": [
|
||||||
|
{
|
||||||
|
"type": "number",
|
||||||
|
"label": "UID",
|
||||||
|
"hint": "Ensure any volume directories on the host are owned by the same user you specify",
|
||||||
|
"placeholder": "1000",
|
||||||
|
"env_variable": "SEEDSYNC_PUID"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "number",
|
||||||
|
"label": "GUID",
|
||||||
|
"hint": "Ensure any volume directories on the host are owned by the same group you specify",
|
||||||
|
"placeholder": "1000",
|
||||||
|
"env_variable": "SEEDSYNC_PGID"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
41
apps/seedsync/docker-compose.yml
Normal file
41
apps/seedsync/docker-compose.yml
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
version: '3.9'
|
||||||
|
services:
|
||||||
|
seedsync:
|
||||||
|
container_name: seedsync
|
||||||
|
image: ipsingh06/seedsync:0.8.6
|
||||||
|
user: '${SEEDSYNC_PUID:-1000}:${SEEDSYNC_PGID:-1000}'
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ}
|
||||||
|
volumes:
|
||||||
|
- ${APP_DATA_DIR}/data/config:/config
|
||||||
|
- ${ROOT_FOLDER_HOST}/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: 8800
|
||||||
|
# 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
|
27
apps/seedsync/metadata/description.md
Normal file
27
apps/seedsync/metadata/description.md
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
# 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!
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
Built on top of LFTP, the fastest file transfer program ever
|
||||||
|
Web UI - track and control your transfers from anywhere
|
||||||
|
Automatically extract your files after sync
|
||||||
|
Auto-Queue - only sync the files you want based on pattern matching
|
||||||
|
Delete local and remote files easily
|
||||||
|
Fully open source!
|
||||||
|
|
||||||
|
## How it works
|
||||||
|
|
||||||
|
Install SeedSync on a local machine. SeedSync will connect to your remote server and sync files to the local machine as they become available.
|
||||||
|
|
||||||
|
You don't need to install anything on the remote server. All you need are the SSH credentials for the remote server.
|
||||||
|
|
||||||
|
FAQ: https://ipsingh06.github.io/seedsync/faq/
|
||||||
|
|
||||||
|
## Folder Info
|
||||||
|
|
||||||
|
| Root Folder | Container Folder |
|
||||||
|
|---------------------------------------|------------------|
|
||||||
|
| /runtipi/app-data/seedsync/data/config| /config |
|
||||||
|
| /runtipi/media/torrents/complete | /downloads |
|
BIN
apps/seedsync/metadata/logo.jpg
Normal file
BIN
apps/seedsync/metadata/logo.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
Loading…
Reference in New Issue
Block a user