Skip to content

Instantly share code, notes, and snippets.

@timw4mail
Last active August 23, 2018 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timw4mail/75ee98614a18e81bd3f9dc5e4837f40f to your computer and use it in GitHub Desktop.
Save timw4mail/75ee98614a18e81bd3f9dc5e4837f40f to your computer and use it in GitHub Desktop.
Script to update docker mastodon
#!/bin/bash
docker pull tootsuite/mastodon:latest;
docker-compose down;
docker-compose run --rm web bundle exec rake db:migrate;
docker-compose run --rm web bundle exec rake assets:precompile;
docker-compose up -d;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment