How do I update a One-Click App?
I installed the GitLab One-Click App on a Linode and I have gotten a notification that an update is available, I would like to know if anyone has any ideas on how I can update the GitLab application?
Any assistance will be much appreciated.
Thanks
1 Reply
It looks like the GitLab One-Click App deploys with Debian 9. You should be able to install updates by logging in (via SSH or Lish) and simply updating from the command line:
root@gitlab:~$ apt update
root@gitlab:~$ apt upgrade
The first command fetches updates from the repos, the second downloads and upgrades packages on your system. If you want to update GitLab only, I'd follow the official GitLab instructions:
https://about.gitlab.com/update/#debian
If you're curious, the links below have more information on Debian package management:
https://wiki.debian.org/DebianPackageManagement
https://www.debian.org/doc/manuals/debian-faq/uptodate.en.html