You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nextcloud's development environment using Docker Compose providing a large variety of services for Nextcloud server and app development and testing.
6
6
@@ -20,7 +20,7 @@ Nextcloud's development environment using Docker Compose providing a large varie
20
20
21
21
You can find a step-by-step tutorial on how to use this setup in the [Nextcloud Developer Portal](https://nextcloud.com/developer/). It will guide you through the setup and show you how to use it for app development: https://cloud.nextcloud.com/s/iyNGp8ryWxc7Efa?path=%2F1%20Setting%20up%20a%20development%20environment
22
22
23
-
In detail explanation of the setup and its features and configuration options can be found in the [nextcloud-docker-dev documentation](https://juliusknorr.github.io/nextcloud-docker-dev/).
23
+
In detail explanation of the setup and its features and configuration options can be found in the [nextcloud-docker-dev documentation](https://nextcloud.github.io/nextcloud-docker-dev/).
24
24
25
25
## Quickstart
26
26
@@ -31,7 +31,7 @@ In detail explanation of the setup and its features and configuration options ca
31
31
32
32
To start the setup run the following commands to clone the repository and bootstrap the setup. This will prepare your setup and clone the Nextcloud server repository and required apps into the `workspace` folder.
You can also start it in the background using `docker compose up -d nextcloud`.
49
49
50
-
You can then access your Nextcloud instance at [http://nextcloud.local](http://nextcloud.local). The default username is `admin` and the password is `admin`. [Other users can be found in the documentation](https://juliusknorr.github.io/nextcloud-docker-dev/basics/overview/#default-users).
50
+
You can then access your Nextcloud instance at [http://nextcloud.local](http://nextcloud.local). The default username is `admin` and the password is `admin`. [Other users can be found in the documentation](https://nextcloud.github.io/nextcloud-docker-dev/basics/overview/#default-users).
51
51
52
52
> [!WARN]
53
53
> Note that for performance reasons the server repository might have been cloned with `--depth=1` by default. To get the full history it is highly recommended to run:
@@ -74,29 +74,29 @@ Running the containers does not need this repository to be cloned.
74
74
Example for running a Nextcloud server from the master branch of server:
75
75
76
76
```bash
77
-
docker run --rm -p 8080:80 ghcr.io/juliusknorr/nextcloud-dev-php81:latest
77
+
docker run --rm -p 8080:80 ghcr.io/nextcloud/nextcloud-dev-php81:latest
78
78
```
79
79
80
80
For app development you can mount your app directly into the container:
81
81
82
82
```bash
83
-
docker run --rm -p 8080:80 -v ~/path/to/appid:/var/www/html/apps-extra/appid ghcr.io/juliusknorr/nextcloud-dev-php81:latest
83
+
docker run --rm -p 8080:80 -v ~/path/to/appid:/var/www/html/apps-extra/appid ghcr.io/nextcloud/nextcloud-dev-php81:latest
84
84
```
85
85
86
86
The `SERVER_BRANCH` environment variable can be used to run different versions of Nextcloud by specifying either a server branch or git tag.
87
87
88
88
```bash
89
-
docker run --rm -p 8080:80 -e SERVER_BRANCH=v24.0.1 ghcr.io/juliusknorr/nextcloud-dev-php81:latest
89
+
docker run --rm -p 8080:80 -e SERVER_BRANCH=v24.0.1 ghcr.io/nextcloud/nextcloud-dev-php81:latest
90
90
```
91
91
92
92
You can also mount your local server source code into the container to run a local version of Nextcloud:
93
93
94
94
```bash
95
-
docker run --rm -p 8080:80 -e SERVER_BRANCH=v24.0.1 -v /tmp/server:/var/www/html ghcr.io/juliusknorr/nextcloud-dev-php81:latest
95
+
docker run --rm -p 8080:80 -e SERVER_BRANCH=v24.0.1 -v /tmp/server:/var/www/html ghcr.io/nextcloud/nextcloud-dev-php81:latest
96
96
```
97
97
## More features
98
98
99
-
You can find documentation for more advanced features in [nextcloud-docker-dev documentation](https://juliusknorr.github.io/nextcloud-docker-dev/) for example:
99
+
You can find documentation for more advanced features in [nextcloud-docker-dev documentation](https://nextcloud.github.io/nextcloud-docker-dev/) for example:
0 commit comments