Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion syncthing/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
APP_PORT: 8384

server:
image: syncthing/syncthing:2.0.14@sha256:6d2ab058383b533e045cf2c32fc4c6bbe87c612c92bc2aca9f552fb099b2e123
image: syncthing/syncthing:2.0.15@sha256:1feffa2d4826b48f25faefed093d07c5f00304d7e7ac86fd7cda334d22651643
restart: on-failure
stop_grace_period: 1m
hostname: umbrel
Expand All @@ -16,6 +16,6 @@
- PGID=1000
volumes:
- ${APP_DATA_DIR}/data:/var/syncthing
ports:

Check notice on line 19 in syncthing/docker-compose.yml

View workflow job for this annotation

GitHub Actions / Lint apps

External port mapping "22000:22000/udp"

Port mappings may be unnecessary for the app to function correctly. Docker's internal DNS resolves container names to IP addresses within the same network. External access to the web interface is handled by the app_proxy container. Port mappings are only needed if external access is required to a port not proxied by the app_proxy, or if an app needs to expose multiple ports for its functionality (e.g., DHCP, DNS, P2P, etc.).

Check notice on line 19 in syncthing/docker-compose.yml

View workflow job for this annotation

GitHub Actions / Lint apps

External port mapping "22000:22000/tcp"

Port mappings may be unnecessary for the app to function correctly. Docker's internal DNS resolves container names to IP addresses within the same network. External access to the web interface is handled by the app_proxy container. Port mappings are only needed if external access is required to a port not proxied by the app_proxy, or if an app needs to expose multiple ports for its functionality (e.g., DHCP, DNS, P2P, etc.).
- 22000:22000/tcp
- 22000:22000/udp
14 changes: 7 additions & 7 deletions syncthing/umbrel-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ manifestVersion: 1
id: syncthing
category: files
name: Syncthing
version: "2.0.14"
version: "2.0.15"
tagline: Peer-to-peer file synchronization between your devices
description: >-
Syncthing is a peer-to-peer continuous file synchronization
Expand All @@ -27,12 +27,12 @@ path: ""
defaultPassword: ""
releaseNotes: >-
This release includes several fixes and improvements:
- Fixed beacon issues on point-to-point interfaces on Android
- Fixed version output formatting in discovery server
- Improved logging of device IDs on startup
- Removed charset declaration from JSON content-type headers
- Added option to disable periodic database maintenance
- Included license files for fork-awesome assets
- Fixed GUI to show restarting modal during upgrade restart
- Fixed language select item width limit in GUI
- Added id and name to Stay logged in checkbox for better password manager support
- Improved database maintenance with ability to wait for completion and query last run time
- Added comprehensive sandboxing
- Updated build to use Go 1.26


Full release notes can be found at https://github.com/syncthing/syncthing/releases
Expand Down