Add SeedSync to App Store
This commit is contained in:
parent
a5b3ca25df
commit
8f204f4d35
16
apps/seedsync/config.json
Normal file
16
apps/seedsync/config.json
Normal file
|
@ -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": []
|
||||||
|
}
|
40
apps/seedsync/docker-compose.yml
Normal file
40
apps/seedsync/docker-compose.yml
Normal file
|
@ -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
|
10
apps/seedsync/metadata/description.md
Normal file
10
apps/seedsync/metadata/description.md
Normal file
|
@ -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 |
|
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