Skip to content
Snippets Groups Projects
Commit 98e099bc authored by Chris Croome's avatar Chris Croome
Browse files

Added note about upgrading docker-ce

parent 9ac32aa9
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,24 @@ export SERVERNAME="community.coops.tech"
ansible-playbook -u root discourse_upgrade.yml -i "${SERVERNAME}," -e "hostname=${SERVERNAME}"
```
## Docker Upgrade
Every 3 months there is a new version of `docker-ce` released, the steps to upgrade (this could potentially be written as a Ansible Playbook:
```bash
sudo -i
su - discourse
cd /var/discourse
./launcher app stop
exit
apt-get update
apt-get upgrade
service docker status # check the uptime and that it is running
su - discourse
cd /var/discourse
./launcher app start
```
## Discourse Install
Ansible Playbooks to install
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment