Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,29 @@ services:
extra_hosts:
- host.docker.internal:host-gateway

nextcloud-test:
image: ghcr.io/juliusknorr/nextcloud-dev-php${PHP_VERSION:-81}:latest
environment:
SQL: sqlite
VIRTUAL_HOST: "nextcloud-test${DOMAIN_SUFFIX}"
PHP_XDEBUG_MODE: ${PHP_XDEBUG_MODE:-develop}
volumes:
- '${REPO_PATH_SERVER}:/var/www/html'
- '${REPO_PATH_SERVER}/apps-extra:/var/www/html/apps-extra'
- '${ADDITIONAL_APPS_PATH:-./data/apps-extra}:/var/www/html/apps-shared'
- /var/www/html/data
- /var/www/html/config
- /var/www/html/apps-writable
- ./data/skeleton/:/skeleton
- ./data/additional.config.php:/var/www/html/config/additional.config.php:ro
- ./data/shared:/shared
depends_on:
- redis
- mail
- ${PROXY_SERVICE:-proxy}
extra_hosts:
- host.docker.internal:host-gateway

stable16:
image: ghcr.io/juliusknorr/nextcloud-dev-php${PHP_VERSION:-73}:latest
environment:
Expand Down Expand Up @@ -1020,6 +1043,7 @@ services:
# - '${STABLE_ROOT_PATH}/lookupserver:/var/www/html'
extra_hosts:
- host.docker.internal:host-gateway

tinyproxy:
image: docker.io/kalaksi/tinyproxy
cap_drop:
Expand All @@ -1044,7 +1068,6 @@ services:
timeout: 10s
retries: 1


previews_hpb:
image: nextcloud/aio-imaginary:latest
ports:
Expand Down
Loading