Skip to content

Commit 6830cf6

Browse files
committed
v5.6
1 parent 3d98cbd commit 6830cf6

File tree

13 files changed

+71
-20
lines changed

13 files changed

+71
-20
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
!deployarr_v5.5.app
55
!deployarr_v5.5-arm.app
6+
!deployarr_v5.6.app
7+
!deployarr_v5.6-arm.app
68

79
!.gitignore
810
!announcement

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ As Deployarr simplifies setup of several homelab apps, and not just Traefik, it
1212

1313
# Features
1414
<ul>
15-
<li>120+ Total Apps</li>
15+
<li>125+ Total Apps</li>
1616
<li>Docker Environment Setup (FREE) - as in my guides</li>
1717
<li>System Checks (FREE)</li>
1818
<li>Domain Checks to prepare for Traefik (FREE)</li>
@@ -35,13 +35,13 @@ As Deployarr simplifies setup of several homelab apps, and not just Traefik, it
3535

3636
# Downloading and Running Deployarr
3737
```
38-
wget https://raw.githubusercontent.com/anandslab/deployarr/main/deployarr_v5.5.app
38+
wget https://raw.githubusercontent.com/anandslab/deployarr/main/deployarr_v5.6.app
3939
```
4040
```
41-
chmod +x deployarr_v5.5.app
41+
chmod +x deployarr_v5.6.app
4242
```
4343
```
44-
./deployarr_v5.5.app
44+
./deployarr_v5.6.app
4545
```
4646

4747
Use the <strong>-arm.app</strong> version of the file for Raspberry Pi.

compose/gamevault.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,4 @@ services:
2323
DB_HOST: postgresql
2424
DB_USERNAME: $GAMEVAULT_POSTGRESQL_USERNAME
2525
DB_PASSWORD: $GAMEVAULT_POSTGRESQL_PASSWORD
26+
# DOCKER-LABELS-PLACEHOLDER

compose/glances.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ services:
2121
environment:
2222
# - GLANCES_OPT="-C /glances/conf/glances.conf --quiet --export influxdb"
2323
# - GLANCES_OPT="--export influxdb"
24-
- GLANCES_OPT="-w"
24+
- "GLANCES_OPT=-w"
2525
- DOCKER_HOST
2626
# DOCKER-LABELS-PLACEHOLDER

compose/n8n.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
services:
2+
# n8n - Workflow Automation Tool
3+
n8n:
4+
image: docker.n8n.io/n8nio/n8n
5+
container_name: n8n
6+
security_opt:
7+
- no-new-privileges:true
8+
restart: unless-stopped
9+
profiles: ["apps", "all"]
10+
networks:
11+
- default
12+
depends_on:
13+
postgresql:
14+
condition: service_healthy
15+
ports:
16+
- $N8N_PORT:5678
17+
volumes:
18+
- $DOCKERDIR/appdata/n8n:/home/node/.n8n
19+
environment:
20+
- DB_TYPE=postgresdb
21+
- DB_POSTGRESDB_HOST=postgresql
22+
- DB_POSTGRESDB_PORT=5432
23+
- DB_POSTGRESDB_DATABASE=n8n
24+
- DB_POSTGRESDB_USER=${N8N_POSTGRESQL_USERNAME}
25+
- DB_POSTGRESDB_PASSWORD=${N8N_POSTGRESQL_PASSWORD}
26+
- N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true
27+
- N8N_EDITOR_BASE_URL=https://SUBDOMAIN-PLACEHOLDER.${DOMAINNAME_1}
28+
- WEBHOOK_URL=https://SUBDOMAIN-PLACEHOLDER.${DOMAINNAME_1}
29+
# DOCKER-LABELS-PLACEHOLDER

compose/postgresql.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ services:
2424
- POSTGRES_USER=$POSTGRES_USER
2525
- POSTGRES_PASSWORD_FILE=/run/secrets/postgres_default_password
2626
secrets:
27-
- postgres_default_password
27+
- postgres_default_password
28+
# DOCKER-LABELS-PLACEHOLDER

compose/traefik-certs-dumper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22
# Traefik Certs Dumper - Extract LetsEncrypt Certificates - Traefik2 Compatible
33
traefik-certs-dumper:
44
container_name: traefik-certs-dumper
5-
image: humenius/traefik-certs-dumper:latest
5+
image: ghcr.io/kereis/traefik-certs-dumper:latest
66
security_opt:
77
- no-new-privileges:true
88
restart: unless-stopped

compose/traefik.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22
# Traefik 3 - Reverse Proxy
33
traefik:
44
container_name: traefik
5-
image: traefik:3.1
5+
image: traefik:3.3
66
security_opt:
77
- no-new-privileges:true
88
restart: unless-stopped
@@ -54,9 +54,9 @@ services:
5454
- --entrypoints.websecure-internal.http.tls.options=tls-opts@file
5555
# Add dns-cloudflare as default certresolver for all services. Also enables TLS and no need to specify on individual services
5656
- --entrypoints.websecure-external.http.tls.certresolver=dns-cloudflare
57+
- --entrypoints.websecure-internal.http.tls.certresolver=dns-cloudflare
5758
- --entrypoints.websecure-external.http.tls.domains[0].main=$DOMAINNAME_1
5859
- --entrypoints.websecure-external.http.tls.domains[0].sans=*.$DOMAINNAME_1
59-
- --entrypoints.websecure-internal.http.tls.certresolver=dns-cloudflare
6060
- --entrypoints.websecure-internal.http.tls.domains[0].main=$DOMAINNAME_1
6161
- --entrypoints.websecure-internal.http.tls.domains[0].sans=*.$DOMAINNAME_1
6262
# - DOMAINS-PLACEHOLDER-DO-NOT-DELETE
@@ -66,7 +66,7 @@ services:
6666
- --certificatesResolvers.dns-cloudflare.acme.storage=/acme.json
6767
- --certificatesResolvers.dns-cloudflare.acme.dnsChallenge.provider=cloudflare
6868
- --certificatesResolvers.dns-cloudflare.acme.dnsChallenge.resolvers=1.1.1.1:53,1.0.0.1:53
69-
- --certificatesResolvers.dns-cloudflare.acme.dnsChallenge.delayBeforeCheck=120 # To delay DNS check and reduce LE hitrate
69+
- --certificatesResolvers.dns-cloudflare.acme.dnsChallenge.propagation.delayBeforeChecks=120 # To delay DNS check and reduce LE hitrate
7070
#- --certificatesResolvers.dns-cloudflare.acme.dnsChallenge.disablePropagationCheck=true
7171
# - METRICS-PLACEHOLDER-DO-NOT-DELETE
7272
ports:

compose/wallos.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
services:
2+
# Wallos - Open-source Subscription Tracker
3+
wallos:
4+
container_name: wallos
5+
image: bellamy/wallos:latest
6+
security_opt:
7+
- no-new-privileges:true
8+
restart: unless-stopped
9+
networks:
10+
- default
11+
ports:
12+
- "$WALLOS_PORT:80"
13+
volumes:
14+
- '$DOCKERDIR/appdata/wallos/db:/var/www/html/db'
15+
- '$DOCKERDIR/appdata/wallos/logos:/var/www/html/images/uploads/logos'
16+
environment:
17+
TZ: $TZ
18+
# DOCKER-LABELS-PLACEHOLDER

deployarr_v5.6-arm.app

89.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)