Skip to content

Commit d0d1016

Browse files
authored
Merge pull request #488 from nextcloud/chore/branches/support-35
chore(branches): Support stable35
2 parents df4ca69 + 1e68120 commit d0d1016

2 files changed

Lines changed: 34 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 stable30 stable31 stable32 stable33 stable34
85+
for i in stable31 stable32 stable33 stable34 stable35
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: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ services:
4343
- stable32${DOMAIN_SUFFIX}
4444
- stable33${DOMAIN_SUFFIX}
4545
- stable34${DOMAIN_SUFFIX}
46+
- stable35${DOMAIN_SUFFIX}
4647
- mail${DOMAIN_SUFFIX}
4748
- sso${DOMAIN_SUFFIX}
4849
- minio${DOMAIN_SUFFIX}
@@ -717,6 +718,37 @@ services:
717718
extra_hosts:
718719
- host.docker.internal:host-gateway
719720

721+
stable35:
722+
image: ghcr.io/nextcloud/nextcloud-dev-php${PHP_VERSION:-83}:latest
723+
environment:
724+
SQL: ${SQL:-mysql}
725+
NEXTCLOUD_AUTOINSTALL: "YES"
726+
NEXTCLOUD_AUTOINSTALL_APPS:
727+
WITH_REDIS: "YES"
728+
VIRTUAL_HOST: stable35${DOMAIN_SUFFIX}
729+
PROTOCOL: ${PROTOCOL:-https}
730+
ADDITIONAL_APPS_PATH:
731+
NEXTCLOUD_TRUSTED_DOMAINS:
732+
PRIMARY: ${PRIMARY:-local}
733+
PHP_XDEBUG_MODE: ${PHP_XDEBUG_MODE:-develop}
734+
volumes:
735+
- '${STABLE_ROOT_PATH}/stable35:/var/www/html'
736+
- '${STABLE_ROOT_PATH}/stable35/apps-extra:/var/www/html/apps-extra'
737+
- '${ADDITIONAL_APPS_PATH:-./data/apps-extra}:/var/www/html/apps-shared'
738+
- /var/www/html/data
739+
- /var/www/html/config
740+
- /var/www/html/apps-writable
741+
- ./data/skeleton/:/skeleton
742+
- ./data/additional.config.php:/var/www/html/config/additional.config.php:ro
743+
- ./data/shared:/shared
744+
depends_on:
745+
- database-${SQL:-mysql}
746+
- redis
747+
- mail
748+
- ${PROXY_SERVICE:-proxy}
749+
extra_hosts:
750+
- host.docker.internal:host-gateway
751+
720752
stable34:
721753
image: ghcr.io/nextcloud/nextcloud-dev-php${PHP_VERSION:-83}:latest
722754
environment:
@@ -954,6 +986,7 @@ services:
954986
aliasgroup14: http://stable32${DOMAIN_SUFFIX}
955987
aliasgroup15: http://stable33${DOMAIN_SUFFIX}
956988
aliasgroup16: http://stable34${DOMAIN_SUFFIX}
989+
aliasgroup17: http://stable35${DOMAIN_SUFFIX}
957990
dictionaries: de_DE en_US en_GB
958991
username: admin
959992
password: admin

0 commit comments

Comments
 (0)