User Tools

Site Tools


mastodon_upgrade

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
mastodon_upgrade [2023/10/07 16:25] โ€“ created handlemastodon_upgrade [2023/10/07 17:59] (current) โ€“ [Deploy the new version] handle
Line 8: Line 8:
  
 ====== Build a new version ====== ====== Build a new version ======
 +
 +  export NEW_VERSION=4.2.0  # change to actual new version
 +  git checkout trunk
 +  git fetch upstream --tags
 +  git checkout -b merged-$NEW_VERSION
 +  git merge v$NEW_VERSION
 +  git checkout trunk
 +  git merge merged-$NEW_VERSION
 +  git push
 +
 +Then check [[https://gitlab.com/sunbeam.city/mastodon/-/jobs|the "Jobs" page on Gitlab]], and you should see the Docker image build happily running ๐Ÿƒ It takes about 8 minutes.
  
 ====== Deploy the new version ====== ====== Deploy the new version ======
  
 +SSH to the server (arkology.sunbeam.city).
 +
 +Then run:
  
 +  cd /var/services/mastodon
 +  sudo -u services git pull
 +  sudo docker-compose pull && \
 +    sudo docker-compose down && \
 +    sudo docker-compose up -d
 +  sudo docker-compose run --rm -e SKIP_POST_DEPLOYMENT_MIGRATIONS=true web bundle exec rails db:migrate
mastodon_upgrade.1696695944.txt.gz ยท Last modified: 2023/10/07 16:25 by handle