Skip to content

Commit e140b45

Browse files
committed
chore: add stable32 support
1 parent f247560 commit e140b45

2 files changed

Lines changed: 33 additions & 1 deletion

File tree

bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ if [ -f ".env" ]; then
8282
echo "❌ Repository path does not exist"
8383
fi
8484

85-
for i in stable27 stable28 stable29 stable30 stable31
85+
for i in stable28 stable29 stable30 stable31 stable32
8686
do
8787
echo "Stable $i repository path: ${STABLE_ROOT_PATH}/${i}"
8888
STABLE_VERSION=$(grep "OC_VersionString" "${STABLE_ROOT_PATH}/${i}/version.php" | cut -d "'" -f 2)

docker-compose.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ services:
4040
- stable29${DOMAIN_SUFFIX}
4141
- stable30${DOMAIN_SUFFIX}
4242
- stable31${DOMAIN_SUFFIX}
43+
- stable32${DOMAIN_SUFFIX}
4344
- mail${DOMAIN_SUFFIX}
4445
- sso${DOMAIN_SUFFIX}
4546
- imap${DOMAIN_SUFFIX}
@@ -629,6 +630,36 @@ services:
629630
extra_hosts:
630631
- host.docker.internal:host-gateway
631632

633+
stable32:
634+
image: ghcr.io/juliusknorr/nextcloud-dev-php${PHP_VERSION:-81}:latest
635+
environment:
636+
SQL: ${SQL:-mysql}
637+
NEXTCLOUD_AUTOINSTALL: "YES"
638+
NEXTCLOUD_AUTOINSTALL_APPS:
639+
WITH_REDIS: "YES"
640+
VIRTUAL_HOST: stable32${DOMAIN_SUFFIX}
641+
ADDITIONAL_APPS_PATH:
642+
NEXTCLOUD_TRUSTED_DOMAINS:
643+
PRIMARY: ${PRIMARY:-local}
644+
PHP_XDEBUG_MODE: ${PHP_XDEBUG_MODE:-develop}
645+
volumes:
646+
- '${STABLE_ROOT_PATH}/stable32:/var/www/html'
647+
- '${STABLE_ROOT_PATH}/stable32/apps-extra:/var/www/html/apps-extra'
648+
- '${ADDITIONAL_APPS_PATH:-./data/apps-extra}:/var/www/html/apps-shared'
649+
- /var/www/html/data
650+
- /var/www/html/config
651+
- /var/www/html/apps-writable
652+
- ./data/skeleton/:/skeleton
653+
- ./data/additional.config.php:/var/www/html/config/additional.config.php:ro
654+
- ./data/shared:/shared
655+
depends_on:
656+
- database-${SQL:-mysql}
657+
- redis
658+
- mail
659+
- ${PROXY_SERVICE:-proxy}
660+
extra_hosts:
661+
- host.docker.internal:host-gateway
662+
632663
database-sqlite:
633664
image: rwgrim/docker-noop
634665

@@ -830,6 +861,7 @@ services:
830861
aliasgroup10: http://stable29${DOMAIN_SUFFIX}
831862
aliasgroup11: http://stable30${DOMAIN_SUFFIX}
832863
aliasgroup12: http://stable31${DOMAIN_SUFFIX}
864+
aliasgroup13: http://stable32${DOMAIN_SUFFIX}
833865
dictionaries: de_DE en_US en_GB
834866
username: admin
835867
password: admin

0 commit comments

Comments
 (0)