Add resilio sync
This commit is contained in:
parent
449630bf5f
commit
bf94a01cab
3 changed files with 28 additions and 0 deletions
12
apps/resilio-sync/config.json
Normal file
12
apps/resilio-sync/config.json
Normal file
|
@ -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
Normal file
BIN
apps/resilio-sync/data/config/settings.dat
Normal file
Binary file not shown.
16
apps/resilio-sync/docker-compose.yml
Normal file
16
apps/resilio-sync/docker-compose.yml
Normal file
|
@ -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
|
Loading…
Add table
Reference in a new issue