@@ -21,8 +21,8 @@ We highly recommend to use it **in all cases**, except for **Nextcloud AIO**, in
2121``` shell
2222docker run -e NC_HAPROXY_PASSWORD=" some_secure_password" \
2323 -v /var/run/docker.sock:/var/run/docker.sock \
24- --name aa-docker-socket-proxy -h aa-docker-socket-proxy \
25- --restart unless-stopped --privileged -d ghcr.io/cloud-py-api/aa-docker-socket-proxy :release
24+ --name nextcloud-appapi-dsp -h nextcloud-appapi-dsp \
25+ --restart unless-stopped --privileged -d ghcr.io/cloud-py-api/nextcloud-appapi-dsp :release
2626```
2727
2828Instead of ` some_secure_password ` you put your password that later you should provide to AppAPI during Daemon creation.
@@ -36,8 +36,8 @@ docker run -e NC_HAPROXY_PASSWORD="some_secure_password" \
3636 -e BIND_ADDRESS=" x.y.z.z"
3737 -v /var/run/docker.sock:/var/run/docker.sock \
3838 -v ` pwd` /certs/cert.pem:/certs/cert.pem \
39- --name aa-docker-socket-proxy -h aa-docker-socket-proxy --net host \
40- --restart unless-stopped --privileged -d ghcr.io/cloud-py-api/aa-docker-socket-proxy :release
39+ --name nextcloud-appapi-dsp -h nextcloud-appapi-dsp --net host \
40+ --restart unless-stopped --privileged -d ghcr.io/cloud-py-api/nextcloud-appapi-dsp :release
4141```
4242
4343Here in addition we map certificate file from host with SSL certificate that will be used by HaProxy and specify to use the ` host ` network.
@@ -69,27 +69,27 @@ You should set `BIND_ADDRESS` to the IP on which server with ExApps can accept r
6969To build image locally use:
7070
7171``` shell
72- docker build -f ./Dockerfile -t aa-docker-socket-proxy :latest ./
72+ docker build -f ./Dockerfile -t nextcloud-appapi-dsp :latest ./
7373```
7474
7575Deploy image(for ` nextcloud-docker-dev ` ):
7676
7777``` shell
7878docker run -e NC_HAPROXY_PASSWORD=" some_secure_password" \
7979 -v /var/run/docker.sock:/var/run/docker.sock \
80- --name aa-docker-socket-proxy -h aa-docker-socket-proxy --net master_default \
81- --privileged -d aa-docker-socket-proxy :latest
80+ --name nextcloud-appapi-dsp -h nextcloud-appapi-dsp --net master_default \
81+ --privileged -d nextcloud-appapi-dsp :latest
8282```
8383
8484After that create daemon in AppAPI from the Docker Socket Proxy template, specifying:
85- 1 . Host: ` aa-docker-socket-proxy :2375`
85+ 1 . Host: ` nextcloud-appapi-dsp :2375`
86862 . Network in Deploy Config equal to ` master_default `
87873 . Deploy Config: HaProxy password: ` some_secure_password `
8888
8989### HTTPS(remote)
9090
9191We will emulate remote deployment still with ` nextcloud-docker-dev ` setup.
92- For this we deploy ` aa-docker-socket-proxy ` to host network and reach it using ` host.docker.internal ` .
92+ For this we deploy ` nextcloud-appapi-dsp ` to host network and reach it using ` host.docker.internal ` .
9393
9494> [ !NOTE]
9595> Due to current Docker limitations, this setup type is not working on macOS.
@@ -118,8 +118,8 @@ docker run -e NC_HAPROXY_PASSWORD="some_secure_password" \
118118 -e BIND_ADDRESS=" 172.17.0.1" \
119119 -v /var/run/docker.sock:/var/run/docker.sock \
120120 -v ` pwd` /certs/cert.pem:/certs/cert.pem \
121- --name aa-docker-socket-proxy -h aa-docker-socket-proxy --net host \
122- --privileged -d aa-docker-socket-proxy :latest
121+ --name nextcloud-appapi-dsp -h nextcloud-appapi-dsp --net host \
122+ --privileged -d nextcloud-appapi-dsp :latest
123123```
124124
125125After that create daemon in AppAPI from the Docker Socket Proxy template, with next parameters:
0 commit comments