We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e618da6 commit 2b45dc7Copy full SHA for 2b45dc7
Makefile
@@ -112,6 +112,11 @@ distclean: clean
112
rm -rf js/node_modules
113
rm -f composer.lock package-lock.json
114
115
+# Builds the app in a Docker container with PHP 8.3 and Nextcloud 31.0.7 and serves it on localhost:8080
116
+.PHONY: local
117
+local: build
118
+ docker run --rm -d -p 8080:80 --name nextcloud-local -e SERVER_BRANCH="31.0.7" -v .:/var/www/html/apps-extra/gdatavaas ghcr.io/juliusknorr/nextcloud-dev-php83:latest
119
+
120
# Builds the source package for the app store, ignores php tests, js tests
121
# and build related folders that are unnecessary for an appstore release
122
.PHONY: appstore
0 commit comments