Some checks failed
Nextcloud Server Tests / version-consistency (push) Successful in 26s
Nextcloud Server Tests / matrix-config (push) Successful in 28s
Nextcloud Server Tests / Nextcloud stable30 / PHP 8.2 (stable30, 8.2) (push) Successful in 4m10s
Nextcloud Server Tests / Nextcloud stable31 / PHP 8.2 (stable31, 8.2) (push) Successful in 4m31s
Nextcloud Server Tests / Nextcloud stable31 / PHP 8.3 (stable31, 8.3) (push) Successful in 4m29s
Nextcloud Server Tests / Nextcloud stable32 / PHP 8.2 (stable32, 8.2) (push) Successful in 4m26s
Nextcloud Server Tests / Nextcloud stable32 / PHP 8.3 (stable32, 8.3) (push) Has been cancelled
Nextcloud Server Tests / Nextcloud stable33 / PHP 8.2 (stable33, 8.2) (push) Has been cancelled
Nextcloud Server Tests / Nextcloud stable33 / PHP 8.3 (stable33, 8.3) (push) Has been cancelled
50 lines
1.6 KiB
YAML
50 lines
1.6 KiB
YAML
services:
|
|
nextcloud33:
|
|
image: ghcr.io/juliusknorr/nextcloud-dev-php83:latest
|
|
container_name: nc33-dev
|
|
ports:
|
|
- "8093:80"
|
|
environment:
|
|
# NC-Server-Tag/Branch auswählen
|
|
SERVER_BRANCH: v33.0.2
|
|
volumes:
|
|
# persistenter Server + Daten (verhindert erneutes Herunterladen)
|
|
- nc33srv:/var/www/html
|
|
# Mount the checked-out app repo by default; override with APP_SOURCE_DIR if needed.
|
|
- ${APP_SOURCE_DIR:-./opsdash}:/var/www/html/apps-extra/opsdash
|
|
restart: unless-stopped
|
|
|
|
nextcloud31:
|
|
image: ghcr.io/juliusknorr/nextcloud-dev-php83:latest
|
|
container_name: nc31-dev
|
|
ports:
|
|
- "8088:80"
|
|
environment:
|
|
# NC-Server-Tag/Branch auswählen
|
|
SERVER_BRANCH: v31.0.8
|
|
volumes:
|
|
# persistenter Server + Daten (verhindert erneutes Herunterladen)
|
|
- nc31srv2:/var/www/html
|
|
# Mount the checked-out app repo by default; override with APP_SOURCE_DIR if needed.
|
|
- ${APP_SOURCE_DIR:-./opsdash}:/var/www/html/apps-extra/opsdash
|
|
restart: unless-stopped
|
|
|
|
nextcloud32:
|
|
image: ghcr.io/juliusknorr/nextcloud-dev-php83:latest
|
|
container_name: nc32-dev2
|
|
ports:
|
|
- "8092:80"
|
|
environment:
|
|
# NC-Server-Tag/Branch auswählen
|
|
SERVER_BRANCH: v32.0.3
|
|
volumes:
|
|
# persistenter Server + Daten (verhindert erneutes Herunterladen)
|
|
- nc32srv2:/var/www/html
|
|
# Mount the checked-out app repo by default; override with APP_SOURCE_DIR if needed.
|
|
- ${APP_SOURCE_DIR:-./opsdash}:/var/www/html/apps-extra/opsdash
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
nc33srv:
|
|
nc31srv2:
|
|
nc32srv2:
|