misskey/docs/docker.en.md
かひわし4(バージョン1) 4557856104 Doc: Update setup documents for 10.x (#4676)
* Doc: Update setup documents

Use GitHub api to checkout latest release instead of "git tag" command
which cannot accurately determine prerelease tag.
Also, Changed numbered list format because
the shell command is too long to fit on one line.

 Conflicts:
	docs/docker.en.md
	docs/docker.fr.md
	docs/docker.ja.md
	docs/setup.en.md
	docs/setup.fr.md
	docs/setup.ja.md

* Doc: Checkout 10.x tag only

Update "checkout latest release" command.
Checkout latest tag but 10.x tag only.

* Doc: Restore MongoDB

* Use tab instead of spaces
2019-04-16 13:09:31 +09:00

2.4 KiB

Docker Guide

This guide describes how to install and setup Misskey with Docker.

Japanese version also available - 日本語版もあります


1. Download Misskey

  1. Clone Misskey repository's master branch.

    git clone -b master git://github.com/syuilo/misskey.git

  2. Move to misskey directory.

    cd misskey

  3. Checkout to the latest release tag.

    git tag | grep '^10\.' | sort -V --reverse | \
    while read tag_name; do \
    if ! curl -s "https://api.github.com/repos/syuilo/misskey/releases/tags/$tag_name" \
    | grep -qE '"(draft|prerelease)": true'; \
    then git checkout $tag_name; break; fi ; done
    

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.
  3. Edit default.yml and mongo_initdb.js.

3. Configure Docker

Edit docker-compose.yml.

4. Build Misskey

Build misskey with the following:

docker-compose build

5. That is it.

Well done! Now you have an environment to run Misskey.

Launch normally

Just docker-compose up -d. GLHF!

How to update your Misskey server to the latest version

  1. git fetch
  2. git stash
```bash
git tag | grep '^10\.' | sort -V --reverse | \
while read tag_name; do \
if ! curl -s "https://api.github.com/repos/syuilo/misskey/releases/tags/$tag_name" \
| grep -qE '"(draft|prerelease)": true'; \
then git checkout $tag_name; break; fi ; done
```
  1. git stash pop
  2. docker-compose build
  3. Check ChangeLog for migration information
  4. docker-compose stop && docker-compose up -d

How to execute cli commands:

docker-compose run --rm web node cli/mark-admin @example


If you have any questions or trouble, feel free to contact us!