Nextcloud - Upgrading PostgreSQL database running as Docker container from 16 to 17

Published on Author admin

Stop and remove current Nextcloud docker services: docker stop nextcloud-app docker stop nextcloud-www docker stop nextcloud-postgres docker stop nextcloud-redis docker rm nextcloud-app docker rm nextcloud-www docker rm nextcloud-postgres docker rm nextcloud-redis Run only old PostgreSQL database container using "docker compose --build" docker compose -f /root/docker-compose-nextcloud.yml up --build nextcloud-postgres -d Dump old PostgreSQL database content to… Continue reading Nextcloud - Upgrading PostgreSQL database running as Docker container from 16 to 17

Deploy Nextcloud containerized service using Docker and docker-compose

Published on Author admin

Template for deploying Nextcloud containerized service using Docker and docker-compose, you can use in on both x86_64 and ARM (32/64bit) architecture: https://github.com/openterprise/docker/blob/master/docker-compose-nextcloud.yml This template deploys Nextcloud with following setup: • application: Nextcloud • application server: Apache + PHP • database: MariaDB / PostgreSQL • cache: Redis • scheduler: crontab Requirements: • Docker • docker-compose

Running Nextcloud as Flatpak on Fedora

Published on Author admin

Download Flathub repository file: https://flathub.org/repo/flathub.flatpakrepo Open downloaded file with Software Install option Install Nextcloud app from Flathub repo: flatpak install flathub org.nextcloud.Nextcloud List installed Flatpack apps: flatpak list Run Nextcloud app: flatpak run org.nextcloud.Nextcloud You can also copy nextcloud.cfg config file from your previous standalone nextcloud client: cp ./.config/Nextcloud/nextcloud.cfg ./.var/app/org.nextcloud.Nextcloud/config/Nextcloud/nextcloud.cfg