Skip to content

Commit 004ec04

Browse files
author
Matt Reeves
committedSep 17, 2024
Merge branch 'main' into renovate/ghcr.io-goauthentik-server
2 parents dd0920d + 2a4e92a commit 004ec04

File tree

3 files changed

+36
-6
lines changed

3 files changed

+36
-6
lines changed
 

‎.forgejo/workflows/CD.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ jobs:
3333
IFS=' ' read -r -a folder_array <<< "${{ steps.detect-changes.outputs.folders }}"
3434
for folder in "${folder_array[@]}"; do
3535
case $folder in
36+
actual)
37+
target_host="ubu.lan"
38+
;;
3639
arrs)
3740
target_host="arrs.lan"
3841
;;
@@ -60,11 +63,14 @@ jobs:
6063
netboot)
6164
target_host="netboot.lan"
6265
;;
63-
nexus)
64-
target_host="nexus.lan"
66+
nexterm)
67+
target_host="ubu.lan"
6568
;;
66-
pages)
67-
target_host="pages.lan"
69+
npm)
70+
target_host="npm.lan"
71+
;;
72+
paperless)
73+
target_host="ubu.lan"
6874
;;
6975
portainer)
7076
target_host="port.lan"

‎docker/arm/docker-compose.yml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,30 @@ services:
6565
restart: unless-stopped
6666
networks:
6767
- gitea_main
68+
69+
fail2ban:
70+
image: crazymax/fail2ban:1.1.0
71+
container_name: fail2ban
72+
network_mode: "host"
73+
cap_add:
74+
- NET_ADMIN
75+
- NET_RAW
76+
volumes:
77+
- "/docker/appdata/fail2ban/data:/data"
78+
- "/var/log/auth.log:/var/log/auth.log:ro"
79+
- "/docker/appdata/nginx/data/logs/:/log/npm/:ro"
80+
environment:
81+
- TZ=America/New_York
82+
- F2B_LOG_TARGET=STDOUT
83+
- F2B_LOG_LEVEL=INFO
84+
- F2B_DB_PURGE_AGE=1d
85+
- SSMTP_HOST=$SSMTP_HOST
86+
- SSMTP_PORT=587
87+
- SSMTP_HOSTNAME=$SSMTP_HOSTNAME
88+
- SSMTP_USER=$SSMTP_USER
89+
- SSMTP_PASSWORD=$SSMTP_PASSWORD
90+
- SSMTP_TLS=YES
91+
restart: always
6892

6993
uptime-kuma:
7094
image: louislam/uptime-kuma:1.23.13
@@ -109,7 +133,7 @@ services:
109133
networks:
110134
- gitea_main
111135
n8n:
112-
image: ghcr.io/n8n-io/n8n:1.59.0
136+
image: ghcr.io/n8n-io/n8n:1.59.1
113137
container_name: n8n
114138
ports:
115139
- 5678:5678

‎docker/paperless/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
- redisdata:/data
77

88
webserver:
9-
image: ghcr.io/paperless-ngx/paperless-ngx:2.12.0
9+
image: ghcr.io/paperless-ngx/paperless-ngx:2.12.1
1010
restart: unless-stopped
1111
depends_on:
1212
- broker

0 commit comments

Comments
 (0)
Please sign in to comment.