Skip to content

Commit bacde5c

Browse files
author
Matt Reeves
committedSep 17, 2024
Merge branch 'main' into renovate/ghcr.io-paperless-ngx-paperless-ngx-2.x
2 parents 668619a + 60e3424 commit bacde5c

File tree

3 files changed

+45
-4
lines changed

3 files changed

+45
-4
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: 24 additions & 0 deletions
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

‎docker/nexterm/docker-compose.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
services:
2+
nexterm:
3+
container_name: nexterm
4+
ports:
5+
- "6989:6989"
6+
restart: always
7+
volumes:
8+
- nexterm:/app/data
9+
image: germannewsmaker/nexterm:1.0.2-OPEN-PREVIEW
10+
volumes:
11+
nexterm:

0 commit comments

Comments
 (0)
Please sign in to comment.