Von NCP zu AIO funzt nicht

Hi,

ich nutze aktuell NCP inkl. NC Office problemlos.

Hatte am Wochenende bissl rumgespielt und mir die Cloud zerschossen.

Ist Dank Docker ja kein Problem, also Image neu drauf und fertig.

Dabei habe ich gesehen, dass NCP eingestellt wurde und nur noch paar Monate Updates bekommen soll und man sonst zu AIO wechseln sollte.

Also gedacht, teste ich mal, aber bekomme es nicht zum Laufen. Ich nutze aktuell NCP hinter Nginx Proxy Manager und habe diesen für AIO angepasst.

Cannot connect to the docker socket. Cannot proceed.
If you are on Docker Desktop v4.19 or higher, see https://github.com/nextcloud/all-in-one/issues/2450
If SELinux is enabled on your host, see GitHub - nextcloud/all-in-one: The official Nextcloud installation method. Provides easy deployment and maintenance with most features included in this one Nextcloud instance.

Das meldet mir Protainer.

Folgend meine Docker Compose

version: "3"
  services:
   nextcloud:
    container_name: nextcloud-aio-mastercontainer
    image: nextcloud/all-in-one:latest
    restart: always
    ports:
      - 8080:8080
    dns:
      - 127.0.0.1
      - 1.1.1.1
      - 8.8.8.8
    environment:
      - APACHE_PORT=11000
    volumes:
      - nextcloud_aio_mastercontainer:/mnt/docker-aio-config
      - ./var/run/docker.sock:/var/run/docker.sock:ro

  volumes:
      nextcloud_aio_mastercontainer:
      name: nextcloud_aio_mastercontainer

Danke im vor raus

This is the error. It must be an absolute path:
- /var/run/docker.sock:/var/run/docker.sock:ro

Best would actually be to follow https://github.com/nextcloud/all-in-one#how-to-run-aio-with-portainer

1 Like

Yes thanks, but know saying port 443 isn’t opened … it’s correct. Nginx want the port 11000 why now 443?

Because you point nginx at port 11000 but nginx itself should use port 443. See all-in-one/reverse-proxy.md at main · nextcloud/all-in-one · GitHub

1 Like