Is the NextCloud Pi Docker Compose Yaml correct?

Open link in next tab

https://github.com/nextcloud/nextcloudpi/blob/master/build/docker/docker-compose.yml

It points to an x86 image

Sign in to add comment

I never heard of that image (also not nextcloud expert 😉), but it seems they have more images:

https://hub.docker.com/search?q=ownyourbits%2Fnextcloudpi

I would probably use their docker run command (image name doesnt contain x86) from github, which can be converted to docker-compose with sites like:

https://www.composerize.com/

And it becomes something like this:


name: 
services:
    nextcloudpi:
        ports:
            - 4443:4443
            - 443:443
            - 80:80
        volumes:
            - ncdata:/data
        container_name: nextcloudpi
        image: ownyourbits/nextcloudpi
        command: $DOMAIN
volumes:
    ncdata:
        external:
            name: ncdata

But again, im not expert and I was running linuxserver.io image on my pi (I still run it, but upgraded server to x86 PC)

Thank you. Such a useful link