This repository has been archived by the owner on Feb 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Manage better updates #3
Comments
A nice one liner like we love ;)
|
This was referenced Jan 10, 2016
Notes used for update:
|
Notes from upgrade to version 9:
|
Notes from upgrade to version 9.0.2:
|
Notes to upgrade to Nextcloud:
|
Notes to upgrade nextcloud from 9.0.53 to 10.0:
|
Upgrade procedure 9.1.2 -> 10.0.2docker-compose pull
docker exec owncloud mv /var/www/html/version.php /var/www/html/version.php.old
docker-compose up -d --force-recreate && docker-compose logs -f
# Tap upgrade button from your browser
# Finished upgrading if you're lucky One of my ownclouds was succeeded with this procedure but another one faild with CardDavBackend error. I restored it and gave up at upgrading 9.1.2 -> 9.1.6. Restore procedure# restore DB
docker cp backup/owncloud-dbbackup_20170713.bak owncloud-db:/
docker exec owncloud-db mysql -uroot -p owncloud < /owncloud-dbbackup_20170713.bak
# restore web source
docker exec -it owncloud /bin/bash
curl https://download.owncloud.org/community/owncloud-9.1.6.tar.bz2 -o owncloud-9.1.6.tar.bz2
bzip2 -dk owncloud-9.1.6.tar.bz2
tar xvf owncloud-9.1.6.tar
## overwrite sources
cp -arp owncloud/* /var/www/html/
chown www-data:www-data apps/ -R
# restore config.php
cp backup/config.php /var/www/html/config/
# Tap upgrade button from your browser |
not maintained anymore moved to nextcloud |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Let's find a way to understand the good version of each apps, and update them programatically.
Update process:
The text was updated successfully, but these errors were encountered: