mirror of
https://github.com/thomiceli/opengist
synced 2024-11-08 12:55:50 +01:00
1.3 KiB
1.3 KiB
Update
Make a backup
Before updating, always make sure to backup the Opengist home directory, where all the data is stored.
You can do so by copying the ~/.opengist
directory (default location).
cp -r ~/.opengist ~/.opengist.bak
Install the new version
With Docker
Pull the last version of Opengist
docker pull ghcr.io/thomiceli/opengist:1
And restart the container, using docker compose up -d
for example if you use docker compose.
Via binary
Stop the running instance; then like your first installation of Opengist, download the archive for your system from the release page here, and extract it.
# example for linux amd64
wget https://github.com/thomiceli/opengist/releases/download/v1.7.2/opengist1.7.2-linux-amd64.tar.gz
tar xzvf opengist1.7.2-linux-amd64.tar.gz
cd opengist
chmod +x opengist
./opengist # with or without `--config config.yml`
From source
Stop the running instance; then pull the last changes from the master branch, and build the new version.
git pull
make
./opengist
Restore the backup
If you have any issue with the new version, you can restore the backup you made before updating.
rm -rf ~/.opengist
cp -r ~/.opengist.bak ~/.opengist
Then run the old version of Opengist again.