Version updates

This commit is contained in:
Neale Pickett 2023-08-19 21:59:47 -06:00
parent 160b7d6caa
commit 88c39341b4
2 changed files with 38 additions and 39 deletions

View File

@ -18,6 +18,7 @@ git.woozle.org {
drive.woozle.org { drive.woozle.org {
import restricted-access import restricted-access
reverse_proxy webfs:5000 reverse_proxy webfs:5000
#reverse_proxy filebrowser:80
} }
media.woozle.org { media.woozle.org {

View File

@ -4,6 +4,9 @@ services:
image: coredns/coredns image: coredns/coredns
networks: networks:
- hostnet - hostnet
command:
- -conf
- /Corefile
configs: configs:
- source: Corefile - source: Corefile
target: /Corefile target: /Corefile
@ -93,8 +96,12 @@ services:
source: /srv/sys/pigallery2/cache source: /srv/sys/pigallery2/cache
target: /app/data/cache target: /app/data/cache
- type: bind - type: bind
source: /srv/media/photos source: /srv/storage/fam/Photos
target: /srv/media/photos target: /photos/fam
read_only: true
- type: bind
source: /srv/storage/ginnie/Photos
target: /photos/ginnie
read_only: true read_only: true
transmission: transmission:
@ -191,17 +198,14 @@ services:
target: /srv/incoming target: /srv/incoming
gitea: gitea:
image: codeberg.org/forgejo/forgejo:1.18-rootless image: codeberg.org/forgejo/forgejo:1.20-rootless
secrets:
- source: gitea.ini
target: /etc/gitea/app.ini
uid: "1000"
gid: "1000"
mode: 0400
configs: configs:
- source: gitea-robots.txt - source: gitea-robots.txt
target: /var/lib/gitea/custom/robots.txt target: /var/lib/gitea/custom/robots.txt
volumes: volumes:
- type: bind
source: /srv/sys/gitea/app.ini
target: /etc/gitea/app.ini
- type: bind - type: bind
source: /srv/sys/gitea source: /srv/sys/gitea
target: /data target: /data
@ -317,31 +321,25 @@ services:
source: /srv/sys/ddns-updater source: /srv/sys/ddns-updater
target: /updater/data target: /updater/data
tunnel: filebrowser:
deploy: image: filebrowser/filebrowser
replicas: 0 volumes:
image: lscr.io/linuxserver/openssh-server - type: bind
user: abc source: /srv/sys/filebrowser/database
entrypoint: target: /database
- /usr/bin/ssh - type: bind
- -N source: /srv/storage
- -R 172.17.0.1:5880:caddy:80 # 172.17.0.1 = docker host IP target: /srv/storage
- -R :5822:host.docker.internal:22 - type: bind
- -o ServerAliveInterval=30 source: /srv/media
- core@melville.woozle.org target: /srv/media
extra_hosts: - type: bind
- host.docker.internal:host-gateway source: /srv/incoming
secrets: target: /srv/incoming
- source: tunnel user: "911:911"
target: /config/.ssh/id_rsa configs:
uid: "911" - source: filebrowser.json
gid: "911" target: /.filebrowser.json
mode: 0600
- source: known_hosts
target: /config/.ssh/known_hosts
uid: "911"
gid: "911"
mode: 0600
configs: configs:
@ -350,10 +348,10 @@ configs:
name: dave.yaml-v3 name: dave.yaml-v3
Corefile: Corefile:
file: Corefile file: Corefile
name: Corefile-v8 name: Corefile-v11
Caddyfile: Caddyfile:
file: Caddyfile file: Caddyfile
name: Caddyfile-v149 name: Caddyfile-v153
portal.json: portal.json:
file: portal.json file: portal.json
name: portal.json-v7 name: portal.json-v7
@ -366,6 +364,9 @@ configs:
gitea-robots.txt: gitea-robots.txt:
file: gitea-robots.txt file: gitea-robots.txt
name: gitea-robots.txt-v1 name: gitea-robots.txt-v1
filebrowser.json:
file: filebrowser.json
name: filebrowser.json-v2
secrets: secrets:
passwd: passwd:
@ -380,9 +381,6 @@ secrets:
known_hosts: known_hosts:
file: secrets/known_hosts file: secrets/known_hosts
name: known_hosts-v1 name: known_hosts-v1
gitea.ini:
file: secrets/gitea.ini
name: gitea.ini-v4
jwt.secret: jwt.secret:
file: secrets/jwt.secret file: secrets/jwt.secret
name: jwt.secret-v1 name: jwt.secret-v1