Skip to content

Commit afbce62

Browse files
authored
Merge pull request #445 from Antreesy/master
chore: add stable33 support
2 parents 798f74e + a334550 commit afbce62

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 stable28 stable29 stable30 stable31 stable32
85+
for i in stable29 stable30 stable31 stable32 stable33
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
@@ -41,6 +41,7 @@ services:
4141
- stable30${DOMAIN_SUFFIX}
4242
- stable31${DOMAIN_SUFFIX}
4343
- stable32${DOMAIN_SUFFIX}
44+
- stable33${DOMAIN_SUFFIX}
4445
- mail${DOMAIN_SUFFIX}
4546
- sso${DOMAIN_SUFFIX}
4647
- minio${DOMAIN_SUFFIX}
@@ -663,6 +664,36 @@ services:
663664
extra_hosts:
664665
- host.docker.internal:host-gateway
665666

667+
stable33:
668+
image: ghcr.io/juliusknorr/nextcloud-dev-php${PHP_VERSION:-83}:latest
669+
environment:
670+
SQL: ${SQL:-mysql}
671+
NEXTCLOUD_AUTOINSTALL: "YES"
672+
NEXTCLOUD_AUTOINSTALL_APPS:
673+
WITH_REDIS: "YES"
674+
VIRTUAL_HOST: stable33${DOMAIN_SUFFIX}
675+
ADDITIONAL_APPS_PATH:
676+
NEXTCLOUD_TRUSTED_DOMAINS:
677+
PRIMARY: ${PRIMARY:-local}
678+
PHP_XDEBUG_MODE: ${PHP_XDEBUG_MODE:-develop}
679+
volumes:
680+
- '${STABLE_ROOT_PATH}/stable33:/var/www/html'
681+
- '${STABLE_ROOT_PATH}/stable33/apps-extra:/var/www/html/apps-extra'
682+
- '${ADDITIONAL_APPS_PATH:-./data/apps-extra}:/var/www/html/apps-shared'
683+
- /var/www/html/data
684+
- /var/www/html/config
685+
- /var/www/html/apps-writable
686+
- ./data/skeleton/:/skeleton
687+
- ./data/additional.config.php:/var/www/html/config/additional.config.php:ro
688+
- ./data/shared:/shared
689+
depends_on:
690+
- database-${SQL:-mysql}
691+
- redis
692+
- mail
693+
- ${PROXY_SERVICE:-proxy}
694+
extra_hosts:
695+
- host.docker.internal:host-gateway
696+
666697
database-sqlite:
667698
image: ghcr.io/juliusknorr/nextcloud-dev-noop:latest
668699

@@ -866,6 +897,7 @@ services:
866897
aliasgroup11: http://stable30${DOMAIN_SUFFIX}
867898
aliasgroup12: http://stable31${DOMAIN_SUFFIX}
868899
aliasgroup13: http://stable32${DOMAIN_SUFFIX}
900+
aliasgroup14: http://stable33${DOMAIN_SUFFIX}
869901
dictionaries: de_DE en_US en_GB
870902
username: admin
871903
password: admin

0 commit comments

Comments
 (0)