-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
1 parent
9c5896e
commit b74911b
Showing
5 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.