mirror of
https://github.com/coder/coder.git
synced 2025-07-09 11:45:56 +00:00
* Licensed features docs Signed-off-by: Spike Curtis <spike@coder.com> * Licensed features -> Enterprise features Signed-off-by: Spike Curtis <spike@coder.com> Signed-off-by: Spike Curtis <spike@coder.com>
1015 B
1015 B
Upgrade
This article walks you through how to upgrade your Coder server.
Prior to upgrading a production Coder deployment, take a database snapshot since Coder does not support rollbacks.
To upgrade your Coder server, simply reinstall Coder using your original method of install.
Via install.sh
If you installed Coder using the install.sh
script, re-run the below
command on the host:
curl -L https://coder.com/install.sh | sh
The script will unpack the new coder
binary version over the one currently installed.
Next, you can restart Coder with the following command (if running it as a system
service):
systemctl restart coder
Via docker-compose
If you installed using docker-compose
, run the below command to upgrade the
Coder container:
docker-compose pull coder && docker-compose up coder -d