Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update nextcloud-appapi-dsp image link #349

Merged
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ services:
shm_size: 2147483648

appapi-dsp:
image: ghcr.io/cloud-py-api/nextcloud-appapi-dsp:release
image: ghcr.io/nextcloud/nextcloud-appapi-dsp:release
container_name: nextcloud-appapi-dsp-http
network_mode: ${NETWORK_MODE:-master_default}
volumes:
Expand All @@ -1057,7 +1057,7 @@ services:
- EX_APPS_COUNT=${EX_APPS_COUNT:-50}

appapi-dsp-https:
image: ghcr.io/cloud-py-api/nextcloud-appapi-dsp:release
image: ghcr.io/nextcloud/nextcloud-appapi-dsp:release
container_name: nextcloud-appapi-dsp-https
network_mode: ${NETWORK_MODE:-host}
volumes:
Expand Down
8 changes: 4 additions & 4 deletions docs/services/app_api.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AppAPI

For [AppAPI](https://github.com/cloud-py-api/app_api) the [Docker Socket Proxy](https://github.com/cloud-py-api/docker-socket-proxy) (DSP) is required to work.
For [AppAPI](https://github.com/nextcloud/app_api) the [Docker Socket Proxy](https://github.com/nextcloud/docker-socket-proxy) (DSP) is required to work.

## HTTP AppAPI DSP

Expand Down Expand Up @@ -28,7 +28,7 @@ or via OCC CLI:

## HTTPS AppAPI DSP

For HTTPS DSP setup, please refer to the [HTTPS (remote)](https://github.com/cloud-py-api/docker-socket-proxy?tab=readme-ov-file#httpsremote) section.
For HTTPS DSP setup, please refer to the [HTTPS (remote)](https://github.com/nextcloud/docker-socket-proxy?tab=readme-ov-file#httpsremote) section.

### 1. Generate self-signed certificates

Expand Down Expand Up @@ -69,10 +69,10 @@ and in the `example.env` file.

### Image of AppAPI DSP is not accessible

In case the AppAPI DSP image is not accessible, you can build it locally by cloning the [Docker Socket Proxy](https://github.com/cloud-py-api/docker-socket-proxy) repository and running the following commands:
In case the AppAPI DSP image is not accessible, you can build it locally by cloning the [Docker Socket Proxy](https://github.com/nextcloud/docker-socket-proxy) repository and running the following commands:

```bash
git clone https://github.com/cloud-py-api/docker-socket-proxy.git
git clone https://github.com/nextcloud/docker-socket-proxy.git
```

```bash
Expand Down
Loading