diff options
| author | Mert Demir <[email protected]> | 2020-05-06 11:52:46 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-05-05 22:52:46 -0400 |
| commit | 97fd715b15eec0a2ee60eee0a3846a1ca0668c27 (patch) | |
| tree | 9dd94e85d60717aafeac6888b257a28f48d96c4a | |
| parent | 3e128c3675889c3280b883e71a4e1984a17a8229 (diff) | |
| download | caprover-one-click-apps-97fd715b15eec0a2ee60eee0a3846a1ca0668c27.tar.gz caprover-one-click-apps-97fd715b15eec0a2ee60eee0a3846a1ca0668c27.zip | |
Syncthing (#166)
* added syncthing logo
* add syncthing json
* add sync port
* correct sync port
| -rw-r--r-- | public/v2/apps/syncthing.json | 43 | ||||
| -rw-r--r-- | public/v2/logos/syncthing.png | bin | 0 -> 18631 bytes |
2 files changed, 43 insertions, 0 deletions
diff --git a/public/v2/apps/syncthing.json b/public/v2/apps/syncthing.json new file mode 100644 index 0000000..2fac46b --- /dev/null +++ b/public/v2/apps/syncthing.json @@ -0,0 +1,43 @@ +{ + "captainVersion": "2", + "documentation": "https://hub.docker.com/r/syncthing/syncthing", + "displayName": "Syncthing", + "description": "Open Source Continuous File Synchronization.", + "dockerCompose": { + "services": { + "$$cap_appname": { + "containerHttpPort": "8384", + "ports": [ + "$$cap_port_sync:22000" + ], + "image": "syncthing/syncthing:$$cap_version", + "restart": "always", + "volumes": [ + "$$cap_appname-data:/var/syncthing" + ] + } + }, + "version": "2", + "volumes": { + "$$cap_appname-data": {} + } + }, + "instructions": { + "end": "Your instance of Syncthing is now starting up.", + "start": "Read more about Syncthing's goals: https://github.com/syncthing/syncthing#goals" + }, + "variables": [ + { + "label": "Syncthing Docker Version", + "defaultValue": "1.5.0", + "description": "It's highly recommended that you don't use the latest tag but instead the major version you need.", + "id": "$$cap_version" + }, + { + "label":"Sync Protocol Listening Port", + "description":"Port that Syncthing listens on for data synchronization (TCP).", + "defaultValue":"22000", + "id":"$$cap_port_sync" + } + ] +} diff --git a/public/v2/logos/syncthing.png b/public/v2/logos/syncthing.png Binary files differnew file mode 100644 index 0000000..6f18ee4 --- /dev/null +++ b/public/v2/logos/syncthing.png |
