diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-08-12 00:29:17 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2018-08-12 00:30:58 +0900 |
| commit | 3a77d871d59fabfbb4f06da832b29454776e0850 (patch) | |
| tree | 714ecffbae4510761f665c5d82900958b2791274 /docs/docker.en.md | |
| parent | Refactoring (#2160) (diff) | |
| download | sharkey-3a77d871d59fabfbb4f06da832b29454776e0850.tar.gz sharkey-3a77d871d59fabfbb4f06da832b29454776e0850.tar.bz2 sharkey-3a77d871d59fabfbb4f06da832b29454776e0850.zip | |
Stop supporting docker
Diffstat (limited to 'docs/docker.en.md')
| -rw-r--r-- | docs/docker.en.md | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/docs/docker.en.md b/docs/docker.en.md deleted file mode 100644 index 591ad86607..0000000000 --- a/docs/docker.en.md +++ /dev/null @@ -1,29 +0,0 @@ -Setup with Docker :whale: -================================================================ - -Ensure that the working directory is the repository root directory. - -To create misskey image: -``` console -$ sudo docker build -t misskey ./docker -``` - -To run misskey: -``` console -$ sudo docker run --rm -i -t -p $PORT:80 -v $(pwd):/root/misskey -v $DBPATH:/data/db misskey -``` - -where `$PORT` is the port used to access Misskey Web from host browser -and `$DBPATH` is the path of MongoDB database on the host for data persistence. - -ex: -``` console -$ sudo docker run --rm -i -t -p 80:80 -v $(pwd):/root/misskey -v /data/db:/data/db misskey -``` - -If you want to run misskey in production mode, add `--env NODE_ENV=production` like this: -``` console -$ sudo docker run --rm -i -t -p 80:80 -v $(pwd):/root/misskey -v /data/db:/data/db --env NODE_ENV=production misskey -``` - -Note that `$(pwd)` is the working directory. |