this post was submitted on 04 Feb 2024
2 points (75.0% liked)

nextcloud

679 readers
3 users here now

Nextcloud is a suite of client-server software for creating and using file hosting services.

https://nextcloud.com

https://github.com/nextcloud

IRC: #nextcloud on libera.chat
Matrix: #nextcloud:matrix.org

Other Nextcloud communities on Lemmy

founded 4 years ago
MODERATORS
 

It points to an x86 image

top 3 comments
sorted by: hot top controversial new old
[โ€“] [email protected] 2 points 6 months ago (1 children)

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

[โ€“] [email protected] 2 points 6 months ago (1 children)

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: <your project 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)

[โ€“] [email protected] 1 points 6 months ago

Thank you. Such a useful link