diff options
| author | Zero King <l2dy@icloud.com> | 2018-11-16 13:47:10 +0000 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-11-16 22:47:10 +0900 |
| commit | 1fd298ac9cc0f52703a24b0bb3f60fccbff825ea (patch) | |
| tree | 5ee9957524f0cf1154799a4df8a339c4e1f1915d /docs | |
| parent | Merge branch 'develop' of https://github.com/syuilo/misskey into develop (diff) | |
| download | sharkey-1fd298ac9cc0f52703a24b0bb3f60fccbff825ea.tar.gz sharkey-1fd298ac9cc0f52703a24b0bb3f60fccbff825ea.tar.bz2 sharkey-1fd298ac9cc0f52703a24b0bb3f60fccbff825ea.zip | |
Update docker.en.md (#3272)
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/docker.en.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/docker.en.md b/docs/docker.en.md index a88e0803e8..d1ca144f23 100644 --- a/docs/docker.en.md +++ b/docs/docker.en.md @@ -13,7 +13,7 @@ This guide describes how to install and setup Misskey with Docker. 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. -*2.* Make configuration files +*2.* Configure Misskey ---------------------------------------------------------------- 1. `cp .config/example.yml .config/default.yml` Copy the `.config/example.yml` and rename it to `default.yml`. 2. `cp .config/mongo_initdb_example.js .config/mongo_initdb.js` Copy the `.config/mongo_initdb_example.js` and rename it to `mongo_initdb.js`. @@ -31,12 +31,12 @@ Build misskey with the following: *5.* That is it. ---------------------------------------------------------------- -Well done! Now, you have an environment that run to Misskey. +Well done! Now you have an environment to run Misskey. ### Launch normally Just `docker-compose up -d`. GLHF! -### Way to Update to latest version of your Misskey +### 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)` @@ -45,9 +45,9 @@ Just `docker-compose up -d`. GLHF! 6. Check [ChangeLog](../CHANGELOG.md) for migration information 7. `docker-compose stop && docker-compose up -d` -### Way to execute cli command: +### How to execute [cli commands](manage.en.md): `docker-compose run --rm web node cli/mark-admin @example` ---------------------------------------------------------------- -If you have any questions or troubles, feel free to contact us! +If you have any questions or trouble, feel free to contact us! |