diff options
| author | かひわし4(バージョン1) <khws4v1@gmail.com> | 2019-04-08 21:40:13 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-04-08 21:40:13 +0900 |
| commit | eb14acbe0c2f2e3897f82a01779daa493d345436 (patch) | |
| tree | 84e8a63c7bf5854bcf6355333cd36475814664a2 /docs/docker.en.md | |
| parent | wip migration (diff) | |
| download | sharkey-eb14acbe0c2f2e3897f82a01779daa493d345436.tar.gz sharkey-eb14acbe0c2f2e3897f82a01779daa493d345436.tar.bz2 sharkey-eb14acbe0c2f2e3897f82a01779daa493d345436.zip | |
Doc: Update installing command (#4655)
Replace the "Checkout to Latest Release" command.
Current setup document will checkout latest alpha version.
Because grep command in the document does not exclude alpha version tags.
Diffstat (limited to 'docs/docker.en.md')
| -rw-r--r-- | docs/docker.en.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/docker.en.md b/docs/docker.en.md index ee69b6d7ae..1b607f9eae 100644 --- a/docs/docker.en.md +++ b/docs/docker.en.md @@ -11,7 +11,7 @@ This guide describes how to install and setup Misskey with Docker. ---------------------------------------------------------------- 1. `git clone -b master git://github.com/syuilo/misskey.git` Clone Misskey repository's master branch. 2. `cd misskey` Move to misskey directory. -3. `git checkout $(git tag -l | grep -v 'rc[0-9]*$' | sort -V | tail -n 1)` Checkout to the [latest release](https://github.com/syuilo/misskey/releases/latest) tag. +3. `git checkout $(git tag -l | grep -Ev -- '-(rc|alpha)\.[0-9]+$' | sort -V | tail -n 1)` Checkout to the [latest release](https://github.com/syuilo/misskey/releases/latest) tag. *2.* Configure Misskey ---------------------------------------------------------------- @@ -67,7 +67,7 @@ Just `docker-compose up -d`. GLHF! ### How to update your Misskey server to the latest version 1. `git fetch` 2. `git stash` -3. `git checkout $(git tag -l | grep -v 'rc[0-9]*$' | sort -V | tail -n 1)` +3. `git checkout $(git tag -l | grep -Ev -- '-(rc|alpha)\.[0-9]+$' | sort -V | tail -n 1)` 4. `git stash pop` 5. `docker-compose build` 6. Check [ChangeLog](../CHANGELOG.md) for migration information |