18 lines
551 B
YAML
18 lines
551 B
YAML
services:
|
|
nextcloud:
|
|
image: ghcr.io/juliusknorr/nextcloud-dev-php83:latest
|
|
container_name: nc30-dev
|
|
ports:
|
|
- "8086:80"
|
|
environment:
|
|
# NC-Server-Tag/Branch auswählen
|
|
SERVER_BRANCH: v30.0.11
|
|
volumes:
|
|
# persistenter Server + Daten (verhindert erneutes Herunterladen)
|
|
- nc30srv:/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:
|
|
nc30srv:
|