Last active
May 10, 2019 13:37
-
-
Save heliostatic/4099cc3070ad45ebd909b13aeed925fa to your computer and use it in GitHub Desktop.
mastodon docker justfile
This file contains 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
fetch: | |
git fetch | |
update VERSION: | |
git stash | |
git checkout v{{VERSION}} | |
git stash pop | |
sed 's/:v[0-9]\.[0-9]\.[0-9]/:v{{VERSION}}/g' docker-compose.yml | |
restart: | |
docker-compose up -d | |
migrate: | |
docker-compose run --rm web rails db:migrate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For use with https://github.com/casey/just and https://github.com/tootsuite/mastodon docker installs