Skip to content

Commit

Permalink
Syncthing (#66)
Browse files Browse the repository at this point in the history
* Add files via upload

* Update cosmos-compose.json

* Update cosmos-compose.json

* Update cosmos-compose.json

* Update cosmos-compose.json

* Update cosmos-compose.json

* confirmed working

* Update cosmos-compose.json

* Update cosmos-compose.json

* Update cosmos-compose.json

* Add files via upload

* Update cosmos-compose.json

* Update cosmos-compose.json

* Syncthing
  • Loading branch information
lilkidsuave authored Oct 23, 2023
1 parent 9c5896e commit b74911b
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 0 deletions.
58 changes: 58 additions & 0 deletions servapps/Syncthing/cosmos-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"cosmos-installer": {
"form": [
{
"name": "hostPath",
"label": "Enter a directory so that synchronized files are available on the host",
"initialValue": "{DefaultDataPath}",
"type": "text"
}
]
},
"version": "3",
"services": {
"syncthing": {
"image": "syncthing/syncthing",
"container_name": "{ServiceName}",
"hostname": "my-{ServiceName}",
"environment": [
"PUID=1000",
"PGID=1000"
],
"labels": {
"cosmos-auto-update": "true",
"cosmos-icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/Syncthing/icon.png"
},
"volumes": [
{if Context.hostPath}
{
"source": "{Context.hostPath}",
"target": "/var/syncthing",
"type": "bind"
}
{/if}
],
"ports": [
"22000:22000/tcp",
"22000:22000/udp",
"21027:21027/udp"
],
"restart": "unless-stopped",
"routes": [
{
"name": "{ServiceName}",
"description": "Expose {ServiceName} to the web",
"useHost": true,
"target": "http://{ServiceName}:8384",
"mode": "SERVAPP",
"Timeout": 14400000,
"ThrottlePerMinute": 12000,
"BlockCommonBots": true,
"SmartShield": {
"Enabled": true
}
}
]
}
}
}
9 changes: 9 additions & 0 deletions servapps/Syncthing/description.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "Syncthing",
"longDescription": "Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers. Syncthing's primary goals are safety from data loss, security against attackers, ease of use, automation, and universal availability. It's designed for individual users who want a safe, secure, and user-friendly file synchronization solution. Syncthing supports a wide range of platforms, including Windows, Mac, Linux, and more. You can find the source code and further information on the official GitHub repository.",
"description": "Syncthing is a continuous file synchronization program that prioritizes safety, security, ease of use, and automation. It's designed for individual users and supports a wide range of platforms, including Windows, Mac, and Linux.",
"tags": ["file synchronization", "data security", "automation", "cross-platform", "individual users", "open-source", "continuous synchronization"],
"repository": "https://github.com/syncthing/syncthing",
"image": "https://hub.docker.com/r/syncthing/syncthing",
"supported_architectures": ["amd64", "arm64"]
}
Binary file added servapps/Syncthing/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added servapps/Syncthing/screenshots/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added servapps/Syncthing/screenshots/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b74911b

Please sign in to comment.