Merge pull request #6470 from schrotie/patch-2

Update tutorial with dev-setup alternative
This commit is contained in:
Morris Jobke
2021-04-28 21:06:03 +02:00
committed by GitHub

View File

@@ -33,6 +33,12 @@ Now open another terminal window and start the development server::
cd nextcloud
php -S localhost:8080
*Alternative Setup*:
Launch with podman (leaner than docker and allows you to run containers without being root):
podman run --name=nextcloud --replace=true -p 8080:80 -v /YOUR_FULL_PATH/apps:/var/www/html/custom_apps docker.io/nextcloud
Launch with docker (not tested):
sudo docker run --name=nextcloud --replace=true -p 8080:80 -v /YOUR_FULL_PATH/apps:/var/www/html/custom_apps nextcloud
Afterwards a skeleton app can be created in the `app store <https://apps.nextcloud.com/developer/apps/generate>`_.
Download the compressed file that contains the generated app and extract it into your ``apps/`` directory. Afterwards the application can be enabled on the `apps page <http://localhost:8080/index.php/settings/apps>`_.