Skip to content

Commit

Permalink
syncthing
Browse files Browse the repository at this point in the history
  • Loading branch information
qiaofeng1227 committed Jan 25, 2024
1 parent b34503d commit ede4153
Show file tree
Hide file tree
Showing 7 changed files with 90 additions and 0 deletions.
14 changes: 14 additions & 0 deletions apps/syncthing/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
W9_DIST=community
W9_VERSION=latest
W9_REPO=syncthing/syncthing

#### -- Not allowed to edit below environments when recreate app based on existing data -- ####
W9_ID=syncthing
W9_HTTP_PORT=8384
W9_HTTP_PORT_SET=8384
W9_URL=appname.example.com
W9_NETWORK=websoft9
#### --------------------------------------------------------------------------------------- ####

PUID=1000
PGID=1000
5 changes: 5 additions & 0 deletions apps/syncthing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# CHANGELOG

## Release
### Fixes and Enhancements

1 change: 1 addition & 0 deletions apps/syncthing/Notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Syncthing
26 changes: 26 additions & 0 deletions apps/syncthing/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Syncthing on Docker

This is an **Docker Compose solution** powered by [Websoft9](https://www.websoft9.com) based on Docker for Syncthing:


- community: v3.0, latest


## System Requirements

The following are the minimal [recommended requirements](https://github.com/onlyoffice/docker#recommended-system-requirements):

* **RAM**: 1 GB or more
* **CPU**: 1 cores or higher
* **Disk**: at least 1 GB of free space
* **bandwidth**: more fluent experience over 100M

## Install

You can install this Syncthing by [How to use it?](https://github.com/Websoft9/docker-library#how-to-use-it).

If you want use Syncthing with **Websoft9 Business Support** free, you can [subscribe Syncthing](https://www.websoft9.com/apps) on Cloud platform

## Documentation

[Syncthing Administrator Guide](https://support.websoft9.com/docs/scratch) powered by Websoft9
23 changes: 23 additions & 0 deletions apps/syncthing/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# image: https://hub.docker.com/r/syncthing/syncthing
# docs: https://github.com/syncthing/syncthing/blob/main/README-Docker.md

version: "3.8"

services:
scratch:
image: ${W9_REPO}:${W9_VERSION}
container_name: ${W9_ID}
hostname: my-syncthing
restart: unless-stopped
env_file: .env
ports:
- ${W9_HTTP_PORT_SET}:8384
volumes:
- sync:/var/syncthing
networks:
default:
name: ${W9_NETWORK}
external: true

volumes:
sync:
Empty file.
21 changes: 21 additions & 0 deletions apps/syncthing/variables.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "scratch",
"trademark": "Scratch",
"release": true,
"fork_url": "https://hub.docker.com/r/syncthing/syncthing",
"edition": [
{
"dist": "community",
"version": [
"1.27",
"latest"
]
}
],
"requirements": {
"cpu": "1",
"memory": "1",
"disk": "1",
"url": "https://github.com/syncthing/syncthing/blob/main/README-Docker.md"
}
}

0 comments on commit ede4153

Please sign in to comment.