Przeglądaj źródła

Merge pull request #109 from meienberger/ArneNaessens-app/resilio-sync

[APP] Resilio Sync
Nicolas Meienberger 3 lat temu
rodzic
commit
eee1499926

+ 13 - 0
apps/resilio-sync/config.json

@@ -0,0 +1,13 @@
+{
+  "name": "Resilio",
+  "port": 8113,
+  "available": true,
+  "id": "resilio-sync",
+  "categories": ["data", "utilities"],
+  "description": "",
+  "short_desc": "Resilio Sync is a fast, reliable, and simple file sync and share solution, powered by P2P technology",
+  "author": "Resilio, Inc.",
+  "source": "https://github.com/bt-sync",
+  "image": "/logos/apps/resilio-sync.png",
+  "form_fields": {}
+}

BIN
apps/resilio-sync/data/config/settings.dat


+ 18 - 0
apps/resilio-sync/docker-compose.yml

@@ -0,0 +1,18 @@
+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

+ 3 - 0
apps/resilio-sync/metadata/description.md

@@ -0,0 +1,3 @@
+[Resilio-sync](https://www.resilio.com/individuals/) (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both. There is an official sync image but we created this one as it supports user mapping to simplify permissions for volumes.
+
+[![resilio-sync](https://www.resilio.com/img/individual/freeproduct.jpg)](https://www.resilio.com/individuals/)

BIN
packages/dashboard/public/logos/apps/resilio-sync.png