18 lines
553 B
YAML
18 lines
553 B
YAML
services:
|
|
nextcloud:
|
|
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.6
|
|
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:
|
|
nc32srv2:
|