sabreW4K3@lemmy.tf to nextcloud@lemmy.mlEnglish · 9 months agoIs the NextCloud Pi Docker Compose Yaml correct?github.comexternal-linkmessage-square3fedilinkarrow-up13arrow-down11file-text
arrow-up12arrow-down1external-linkIs the NextCloud Pi Docker Compose Yaml correct?github.comsabreW4K3@lemmy.tf to nextcloud@lemmy.mlEnglish · 9 months agomessage-square3fedilinkfile-text
minus-squarerambos@lemm.eelinkfedilinkarrow-up2·9 months agoI 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)
minus-squaresabreW4K3@lemmy.tfOPlinkfedilinkEnglisharrow-up1·9 months agoThank you. Such a useful link
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)
Thank you. Such a useful link