Move versioning to service directories so auto-update MRs don't conflict
This commit is contained in:
parent
808e7e3a87
commit
37dd1d8d95
@ -143,12 +143,25 @@ upgrade_federated() {
|
||||
|
||||
echo -ne "\n* Checking installed app versions with latest-versions."
|
||||
|
||||
[ ! -f "/federated/lib/latest-versions" ] && fail "File /federated/lib/latest-version doesn't exist."
|
||||
APP_DOTS='......................'
|
||||
for i in `cat /federated/lib/latest-versions`; do
|
||||
SERVICE=(${i//=/ });
|
||||
APP="${SERVICE[0]}"
|
||||
VERSION="${SERVICE[1]}"
|
||||
for i in /federated/apps/*; do
|
||||
APP=$(basename $i)
|
||||
VERSION=""
|
||||
if [ -e /federated/services/${APP}/service ]; then
|
||||
. /federated/services/${APP}/service
|
||||
if [ -z "$VERSION" ]; then
|
||||
echo "WARNING: No service file in ${APP} service file" >&2
|
||||
VERSION="$(cat /federated/lib/latest-versions |grep ^${APP}= |cut -d= -f2-)"
|
||||
fi
|
||||
else
|
||||
echo "WARNING: No service file for ${APP} found" >&2
|
||||
VERSION="$(cat /federated/lib/latest-versions |grep ^${APP}= |cut -d= -f2-)"
|
||||
fi
|
||||
if [ -z "$VERSION" ]; then
|
||||
echo "WARNING: No version information for ${APP} found" >&2
|
||||
continue
|
||||
fi
|
||||
|
||||
printf "\n%s %s" "$APP" "${APP_DOTS:${#APP}} "
|
||||
|
||||
if [ -f "/federated/apps/$APP/.env" ]; then
|
||||
|
5
services/authelia/service
Normal file
5
services/authelia/service
Normal file
@ -0,0 +1,5 @@
|
||||
CONTAINER=authelia/authelia
|
||||
VERSION=4.38.8
|
||||
INTERNAL_IP=192.168.0.42
|
||||
PORTS=9091
|
||||
PUBLICPORTS=""
|
9
services/autodiscover/service
Normal file
9
services/autodiscover/service
Normal file
@ -0,0 +1,9 @@
|
||||
if [ "$(uname -m)" = "x86_64" ]; then
|
||||
CONTAINER=monogramm/autodiscover-email-settings
|
||||
else
|
||||
CONTAINER=federatedcomputer/autodiscover-email-settings
|
||||
fi
|
||||
VERSION=620af02
|
||||
DEPENDS=mail
|
||||
INTERNAL_IP=192.168.0.32
|
||||
PORTS=8000
|
4
services/baserow/service
Normal file
4
services/baserow/service
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER=baserow/baserow
|
||||
VERSION=1.30.1
|
||||
INTERNAL_IP=192.168.0.29
|
||||
DEPENDS="postgresql mail"
|
4
services/bookstack/service
Normal file
4
services/bookstack/service
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER=lscr.io/linuxserver/bookstack
|
||||
VERSION=24.05.3
|
||||
INTERNAL_IP=192.168.0.36
|
||||
DEPENDS=pdnsmysql
|
3
services/caddy/service
Normal file
3
services/caddy/service
Normal file
@ -0,0 +1,3 @@
|
||||
CONTAINER=federatedcomputer/caddy
|
||||
VERSION=latest
|
||||
INTERNAL_IP=192.168.0.31
|
5
services/calcom/service
Normal file
5
services/calcom/service
Normal file
@ -0,0 +1,5 @@
|
||||
CONTAINER=calcom/cal.com
|
||||
VERSION=v4.7.8
|
||||
INTERNAL_IP=192.168.0.48
|
||||
PORTS=3000
|
||||
DEPENDS=postgresql
|
5
services/castopod/service
Normal file
5
services/castopod/service
Normal file
@ -0,0 +1,5 @@
|
||||
CONTAINER=castopod/castopod
|
||||
VERSION=1.6.5
|
||||
INTERNAL_IP=192.168.0.33
|
||||
PORTS=8000
|
||||
DEPENDS=pdnsmysql
|
4
services/collabora/service
Normal file
4
services/collabora/service
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER=collabora/code
|
||||
VERSION=24.04.12.2.1
|
||||
INTERNAL_IP=192.168.0.17
|
||||
PORTS=9980
|
4
services/coturn/service
Normal file
4
services/coturn/service
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER=coturn/coturn
|
||||
VERSION=4.6.2
|
||||
INTERNAL_IP=192.168.0.35
|
||||
PORTS="3478 3479 5349 5350"
|
@ -1,6 +1,6 @@
|
||||
CONTAINER=docker.io/bitnami/discourse
|
||||
VERSION=3.3.3
|
||||
DEPENDS=redis
|
||||
DEPENDS="redis postgresql"
|
||||
INTERNAL_IP=192.168.0.43
|
||||
# sidekiq
|
||||
EXTRA_IPS=192.168.0.44
|
||||
|
3
services/element/service
Normal file
3
services/element/service
Normal file
@ -0,0 +1,3 @@
|
||||
CONTAINER=vectorim/element-web
|
||||
VERSION=v1.11.92
|
||||
INTERNAL_IP=192.168.0.20
|
4
services/espocrm/service
Normal file
4
services/espocrm/service
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER=espocrm/espocrm
|
||||
VERSION=8.4.0-apache
|
||||
INTERNAL_IP=192.168.0.39
|
||||
DEPENDS="ldap pdnsmysql"
|
4
services/freescout/service
Normal file
4
services/freescout/service
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER=ghcr.io/tiredofit/docker-freescout
|
||||
VERSION=latest_php8.3
|
||||
INTERNAL_IP=192.168.0.37
|
||||
DEPENDS=postgresql
|
5
services/gitea/service
Normal file
5
services/gitea/service
Normal file
@ -0,0 +1,5 @@
|
||||
CONTAINER=gitea/gitea
|
||||
VERSION=1.23.3
|
||||
INTERNAL_IP=192.168.0.30
|
||||
PORTS=3000
|
||||
DEPENDS=postgresql
|
5
services/jitsi/service
Normal file
5
services/jitsi/service
Normal file
@ -0,0 +1,5 @@
|
||||
CONTAINER=jitsi/web
|
||||
VERSION=stable-9955
|
||||
INTERNAL_IP=192.168.0.25
|
||||
PORTS="5222 5347 5280"
|
||||
EXTRA_IPS="192.168.0.26 192.168.0.27 192.168.0.28"
|
4
services/ldap/service
Normal file
4
services/ldap/service
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER=osixia/openldap
|
||||
VERSION=1.5.0
|
||||
INTERNAL_IP=192.168.0.15
|
||||
PORTS="389 636"
|
5
services/listmonk/service
Normal file
5
services/listmonk/service
Normal file
@ -0,0 +1,5 @@
|
||||
CONTAINER=listmonk/listmonk
|
||||
VERSION=v4.1.0
|
||||
INTERNAL_IP=192.168.0.21
|
||||
DEPENDS=postgresql
|
||||
PORTS=9000
|
5
services/mail/service
Normal file
5
services/mail/service
Normal file
@ -0,0 +1,5 @@
|
||||
CONTAINER=docker.io/mailserver/docker-mailserver
|
||||
VERSION=14.0
|
||||
INTERNAL_IP=192.168.0.16
|
||||
DEPENDS=ldap
|
||||
PUBLIC_PORTS="25 143 465 587 993 4190"
|
4
services/matrix/service
Normal file
4
services/matrix/service
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER=matrixdotorg/synapse
|
||||
VERSION=v1.124.0
|
||||
INTERNAL_IP=192.168.0.19
|
||||
DEPENDS=postgresql
|
3
services/msp/service
Normal file
3
services/msp/service
Normal file
@ -0,0 +1,3 @@
|
||||
CONTAINER=thebells1111/federated-msp
|
||||
VERSION=latest
|
||||
INTERNAL_IP=192.168.0.38
|
4
services/nextcloud/service
Normal file
4
services/nextcloud/service
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER=nextcloud
|
||||
VERSION=30.0.5
|
||||
INTERNAL_IP=192.168.0.18
|
||||
DEPENDS=postgresql
|
3
services/panel/service
Normal file
3
services/panel/service
Normal file
@ -0,0 +1,3 @@
|
||||
CONTAINER=wheelybird/ldap-user-manager
|
||||
VERSION=v1.11
|
||||
INTERNAL_IP=192.168.0.23
|
4
services/pdnsadmin/service
Normal file
4
services/pdnsadmin/service
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER=pschiffe/pdns-admin
|
||||
VERSION=0.4.1
|
||||
INTERNAL_IP=192.168.0.12
|
||||
DEPENDS="pdnsmysql pdns"
|
6
services/plane/service
Normal file
6
services/plane/service
Normal file
@ -0,0 +1,6 @@
|
||||
CONTAINER=makeplane/plane-frontend
|
||||
VERSION=v0.24.1
|
||||
DEPENDS=postgresql
|
||||
INTERNAL_IP=192.168.0.50
|
||||
EXTRA_IPS=192.168.0.51
|
||||
PORTS=3000
|
4
services/postgresql/service
Normal file
4
services/postgresql/service
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER=postgres
|
||||
VERSION=14
|
||||
INTERNAL_IP=192.168.0.14
|
||||
PORT=5432
|
4
services/redis/service
Normal file
4
services/redis/service
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER=bitnami/redis
|
||||
VERSION=7.0.15
|
||||
INTERNAL_IP=192.168.0.45
|
||||
PORTS=6379
|
4
services/roundcube/service
Normal file
4
services/roundcube/service
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER=roundcube/roundcubemail
|
||||
VERSION=1.6.9-apache
|
||||
INTERNAL_IP=192.168.0.47
|
||||
DEPENDS="pdnsmysql mail"
|
3
services/traefik/service
Normal file
3
services/traefik/service
Normal file
@ -0,0 +1,3 @@
|
||||
CONTAINER=traefik
|
||||
VERSION=v2.11.16
|
||||
INTERNAL_IP=192.168.0.13
|
4
services/vaultwarden/service
Normal file
4
services/vaultwarden/service
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER=vaultwarden/server
|
||||
VERSION=1.32.7
|
||||
INTERNAL_IP=192.168.0.22
|
||||
DEPENDS=postgresql
|
4
services/wireguard/service
Normal file
4
services/wireguard/service
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER=linuxserver/wireguard
|
||||
VERSION=1.0.20210914
|
||||
INTERNAL_IP=192.168.0.24
|
||||
PORTS="51820/udp"
|
5
services/wordpress/service
Normal file
5
services/wordpress/service
Normal file
@ -0,0 +1,5 @@
|
||||
CONTAINER=bitnami/wordpress
|
||||
VERSION=6.2.2
|
||||
INTERNAL_IP=192.168.0.34
|
||||
PORTS=8080
|
||||
DEPENDS=pdnsmysql
|
Loading…
x
Reference in New Issue
Block a user