Skip to content

Commit df4ca69

Browse files
authored
Merge pull request #481 from nextcloud/chore/noid/migrate-org-juliusknorr-to-nextcloud
chore: migrate repo references from juliusknorr to nextcloud org
2 parents 4f8dcd5 + e746a8c commit df4ca69

9 files changed

Lines changed: 68 additions & 68 deletions

File tree

.github/workflows/docker.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
push_to_registry:
1616
name: Build image
1717
runs-on: ubuntu-latest
18-
if: github.repository == 'juliusknorr/nextcloud-docker-dev'
18+
if: github.repository == 'nextcloud/nextcloud-docker-dev'
1919
strategy:
2020
fail-fast: false
2121
matrix:
@@ -82,8 +82,8 @@ jobs:
8282
platforms: linux/amd64,linux/arm64
8383
file: ${{ steps.dockerfile.outputs.DOCKERFILE }}
8484
tags: |
85-
ghcr.io/juliusknorr/nextcloud-dev-${{ matrix.container }}:${{ github.sha }}
86-
ghcr.io/juliusknorr/nextcloud-dev-${{ matrix.container }}:latest
85+
ghcr.io/nextcloud/nextcloud-dev-${{ matrix.container }}:${{ github.sha }}
86+
ghcr.io/nextcloud/nextcloud-dev-${{ matrix.container }}:latest
8787
cache-from: type=local,src=/tmp/.buildx-cache
8888
cache-to: type=local,dest=/tmp/.buildx-cache-new
8989
- name: Push container image
@@ -95,8 +95,8 @@ jobs:
9595
platforms: linux/amd64,linux/arm64
9696
file: ${{ steps.dockerfile.outputs.DOCKERFILE }}
9797
tags: |
98-
ghcr.io/juliusknorr/nextcloud-dev-${{ matrix.container }}:${{ github.event_name == 'release' && 'release' || 'latest' }}
99-
ghcr.io/juliusknorr/nextcloud-dev-${{ matrix.container }}:${{ github.ref_name }}
98+
ghcr.io/nextcloud/nextcloud-dev-${{ matrix.container }}:${{ github.event_name == 'release' && 'release' || 'latest' }}
99+
ghcr.io/nextcloud/nextcloud-dev-${{ matrix.container }}:${{ github.ref_name }}
100100
cache-from: type=local,src=/tmp/.buildx-cache
101101
cache-to: type=local,dest=/tmp/.buildx-cache-new
102102
- name: Start containers with docker compose

Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,29 +9,29 @@ images: docker/*/Dockerfile docker/Dockerfile.*
99
pull-all:
1010
for file in $$(find docker/ -maxdepth 1 -type f -iname 'Dockerfile.*'); do \
1111
NAME=$$(echo $$file | sed 's/^.*\.//'); \
12-
echo "=> Pulling image $$NAME"; docker pull "ghcr.io/juliusknorr/nextcloud-dev-$${NAME}"; \
12+
echo "=> Pulling image $$NAME"; docker pull "ghcr.io/nextcloud/nextcloud-dev-$${NAME}"; \
1313
done
1414
for file in $$(find docker -maxdepth 2 -type f -iname 'Dockerfile'); do \
1515
NAME=$$(basename $$(dirname $$file)); \
16-
echo "=> Pulling image $$NAME"; docker pull "ghcr.io/juliusknorr/nextcloud-dev-$${NAME}"; \
16+
echo "=> Pulling image $$NAME"; docker pull "ghcr.io/nextcloud/nextcloud-dev-$${NAME}"; \
1717
done
1818

1919
pull-installed:
20-
docker image ls | grep juliusknorr/nextcloud-dev | cut -f 1 -d " "
21-
docker image ls | grep juliusknorr/nextcloud-dev | cut -f 1 -d " " | xargs -L 1 docker pull
20+
docker image ls | grep nextcloud/nextcloud-dev | cut -f 1 -d " "
21+
docker image ls | grep nextcloud/nextcloud-dev | cut -f 1 -d " " | xargs -L 1 docker pull
2222

2323
# Empty target to always build
2424
docker-build:
2525

2626
docker/%/Dockerfile: docker-build
2727
NAME=$$(basename $$(dirname $@)); \
28-
echo "=> Building dockerfile" $@ as ghcr.io/juliusknorr/nextcloud-dev-$$NAME:latest; \
29-
(cd docker && docker build -t ghcr.io/juliusknorr/nextcloud-dev-$$NAME:latest -f $$NAME/Dockerfile .)
28+
echo "=> Building dockerfile" $@ as ghcr.io/nextcloud/nextcloud-dev-$$NAME:latest; \
29+
(cd docker && docker build -t ghcr.io/nextcloud/nextcloud-dev-$$NAME:latest -f $$NAME/Dockerfile .)
3030

3131
docker/Dockerfile.%: docker-build
3232
NAME=$$(echo $$(basename $@) | sed 's/^.*\.//'); \
33-
echo "=> Building dockerfile" $@ as ghcr.io/juliusknorr/nextcloud-dev-$$NAME:latest; \
34-
(cd docker && docker build -t ghcr.io/juliusknorr/nextcloud-dev-$$NAME:latest -f Dockerfile.$$NAME .)
33+
echo "=> Building dockerfile" $@ as ghcr.io/nextcloud/nextcloud-dev-$$NAME:latest; \
34+
(cd docker && docker build -t ghcr.io/nextcloud/nextcloud-dev-$$NAME:latest -f Dockerfile.$$NAME .)
3535

3636
check: dockerfilelint shellcheck
3737

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Nextcloud development environment on Docker Compose
22

3-
[Documentation](https://juliusknorr.github.io/nextcloud-docker-dev/) | [Nextcloud Developer Portal](https://nextcloud.com/developer/)
3+
[Documentation](https://nextcloud.github.io/nextcloud-docker-dev/) | [Nextcloud Developer Portal](https://nextcloud.com/developer/)
44

55
Nextcloud's development environment using Docker Compose providing a large variety of services for Nextcloud server and app development and testing.
66

@@ -20,7 +20,7 @@ Nextcloud's development environment using Docker Compose providing a large varie
2020

2121
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
2222

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/).
2424

2525
## Quickstart
2626

@@ -31,7 +31,7 @@ In detail explanation of the setup and its features and configuration options ca
3131
3232
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.
3333
```bash
34-
git clone https://github.com/juliusknorr/nextcloud-docker-dev
34+
git clone https://github.com/nextcloud/nextcloud-docker-dev
3535
cd nextcloud-docker-dev
3636
./bootstrap.sh
3737
```
@@ -47,7 +47,7 @@ docker compose up nextcloud
4747

4848
You can also start it in the background using `docker compose up -d nextcloud`.
4949

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).
5151

5252
> [!WARN]
5353
> 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.
7474
Example for running a Nextcloud server from the master branch of server:
7575
7676
```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
7878
```
7979
8080
For app development you can mount your app directly into the container:
8181
8282
```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
8484
```
8585
8686
The `SERVER_BRANCH` environment variable can be used to run different versions of Nextcloud by specifying either a server branch or git tag.
8787
8888
```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
9090
```
9191
9292
You can also mount your local server source code into the container to run a local version of Nextcloud:
9393
9494
```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
9696
```
9797
## More features
9898
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:
100100
101101
- Running stable Nextcloud versions in parallel
102102
- Using different database backends

bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,5 +295,5 @@ cat <<EOF
295295
296296
For more details about the individual setup options see
297297
the README.md file or checkout the repo at
298-
https://github.com/juliusknorr/nextcloud-docker-dev
298+
https://github.com/nextcloud/nextcloud-docker-dev
299299
EOF

0 commit comments

Comments
 (0)