Browse Source

Merge branch 'app/resilio-sync' of https://github.com/ArneNaessens/runtipi into ArneNaessens-app/resilio-sync

Nicolas Meienberger 3 years ago
parent
commit
bba966bf9c

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

@@ -0,0 +1,12 @@
+{
+  "name": "Resilio",
+  "port": 8113,
+  "available": true,
+  "id": "resilio-sync",
+  "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": "https://avatars.githubusercontent.com/u/12284211?s=200&v=4",
+  "form_fields": {}
+}

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


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

@@ -0,0 +1,16 @@
+version: "3.7"
+services:
+  resilio-sync:
+    image: lscr.io/linuxserver/resilio-sync:latest
+    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