Skip to content

Commit 5b0d632

Browse files
committed
v5.9
1 parent 65abf62 commit 5b0d632

23 files changed

Lines changed: 96 additions & 32 deletions

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
*
22
*/
33

4-
!deployrr_v5.8.app
5-
!deployrr_v5.8-arm.app
4+
!deployrr_v5.9.app
5+
!deployrr_v5.9-arm.app
66

77
!.gitignore
88
!announcement

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
<h3>Releases</h3>
22

3+
<h5>v5.9 - June 14, 2025</h5>
4+
<ul>
5+
<li>NEW: Added Homer - A simple static homepage for your server.</li>
6+
<li>NEW: Added Change Hostname tool under Tools menu - useful when migrating to a different host.</li>
7+
<li>ENHANCEMENT: Improved SMB mount security with credentials files.</li>
8+
<li>ENHANCEMENT: Added hostname mismatch detection to health checks.</li>
9+
<li>ENHANCEMENT: Updated GPTWOL to use database instead of computers.txt.</li>
10+
<li>ENHANCEMENT: Made Traefik dashboard port configurable via TRAEFIK_PORT variable.</li>
11+
<li>ENHANCEMENT: Updated Redis configuration and compose.</li>
12+
<li>ENHANCEMENT: Version updates (Authentik 2025.2 -> 2025.6.1, Authelia 4.38.19 -> 4.39.4, Traefik 3.3 -> 3.4, Deployrr Dashboard 1.2 -> 1.3.2)
13+
<li>FIX: App descriptions were not being added to Deployrr Dashboard in some cases.</li>
14+
<li>FIX: Existing Traefik SSL certs were not being respected - Deployrr was proceeding with Traefik logs monitoring when not needed.</li>
15+
<li>FIX: Fixed Deployrr Dashboard URL not being added after Traefik setup (e.g. https://deployrr.example.com).</li>
16+
<li>FIX: Updated Deployrr Dashboard bookmarks.yaml.</li>
17+
<li>FIX: Authentik media folder permissions issue.</li>
18+
</ul>
19+
320
<h5>v5.8 - May 12, 2025</h5>
421
Total Supported Apps: 140+
522
<ul>

announcement

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
\Z7 Announcement: \Zn Deployarr is now Deployrr (finally got the spelling right!).

compose/authelia.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22
# Authelia (Lite) - Self-Hosted Single Sign-On and Two-Factor Authentication
33
authelia:
44
container_name: authelia
5-
image: authelia/authelia:4.38.19
5+
image: authelia/authelia:4.39.4
66
security_opt:
77
- no-new-privileges:true
88
restart: unless-stopped

compose/authentik-worker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
authentik-worker:
3-
image: ghcr.io/goauthentik/server:2025.2
3+
image: ghcr.io/goauthentik/server:2025.6.1
44
container_name: authentik-worker
55
security_opt:
66
- no-new-privileges:true

compose/authentik.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
authentik:
3-
image: ghcr.io/goauthentik/server:2025.2
3+
image: ghcr.io/goauthentik/server:2025.6.1
44
container_name: authentik
55
security_opt:
66
- no-new-privileges:true

compose/deployrr-dashboard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
# Deployrr Dashboard - Homepage based Dashboard for Deployrr
33
deployrr-dashboard:
4-
image: ghcr.io/gethomepage/homepage:v1.2.0 #v0.9.13
4+
image: ghcr.io/gethomepage/homepage:v1.3.2
55
container_name: deployrr-dashboard
66
security_opt:
77
- no-new-privileges:true

compose/gptwol.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ services:
1818
- REFRESH_PING=60 # in seconds
1919
# - PING_TIMEOUT=200 # in milliseconds
2020
volumes:
21-
- $DOCKERDIR/appdata/gptwol/computers.txt:/app/computers.txt
21+
- $DOCKERDIR/appdata/gptwol/db:/app/db
2222
- $DOCKERDIR/appdata/gptwol/cron:/etc/cron.d
2323
# DOCKER-LABELS-PLACEHOLDER

compose/homer.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
services:
2+
# Homer - Application Dashboard
3+
homer:
4+
image: b4bz/homer:latest
5+
container_name: homer
6+
security_opt:
7+
- no-new-privileges:true
8+
restart: unless-stopped
9+
profiles: ["apps", "all"]
10+
networks:
11+
- default
12+
- socket_proxy
13+
ports:
14+
- "$HOMER_PORT:8080"
15+
volumes:
16+
# - /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration
17+
- $DOCKERDIR/appdata/homer:/www/assets
18+
environment:
19+
- DOCKER_HOST
20+
# DOCKER-LABELS-PLACEHOLDER

compose/redis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
- no-new-privileges:true
99
restart: unless-stopped
1010
profiles: ["core", "all"]
11-
command: --save 60 1 --loglevel warning
11+
command: redis-server --save "" --maxmemory 256mb --appendonly no --maxmemory-policy allkeys-lru
1212
healthcheck:
1313
test: ["CMD-SHELL", "redis-cli ping | grep PONG"]
1414
start_period: 20s
@@ -19,6 +19,7 @@ services:
1919
- default
2020
ports:
2121
- "$REDIS_PORT:6379"
22-
volumes:
23-
- $DOCKERDIR/appdata/redis:/data
24-
22+
deploy:
23+
resources:
24+
limits:
25+
memory: 256MB

0 commit comments

Comments
 (0)