Last active
August 23, 2018 13:35
-
-
Save timw4mail/75ee98614a18e81bd3f9dc5e4837f40f to your computer and use it in GitHub Desktop.
Script to update docker mastodon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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