summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2016-12-31 17:33:53 +0900
committerAya Morisawa <AyaMorisawa4869@gmail.com>2016-12-31 17:33:53 +0900
commitc6153f97ed9b878190d220cb36e9c89d9bc85938 (patch)
tree822ea4aced76b1d1e5fd5906c882c89c60b1b8b2
parentCheck GraphicsMagick (diff)
downloadsharkey-c6153f97ed9b878190d220cb36e9c89d9bc85938.tar.gz
sharkey-c6153f97ed9b878190d220cb36e9c89d9bc85938.tar.bz2
sharkey-c6153f97ed9b878190d220cb36e9c89d9bc85938.zip
Update README.md
-rw-r--r--README.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/README.md b/README.md
index 980f2c3f6a..3b8e43266e 100644
--- a/README.md
+++ b/README.md
@@ -55,9 +55,11 @@ Please visit https://www.google.com/recaptcha/intro/ and generate keys.
Ensure that the working directory is the repository root directory.
To create misskey image:
+
`sudo docker build -t misskey ./docker`
To run misskey:
+
`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
@@ -65,6 +67,10 @@ and $DBPATH is the path of MongoDB database on the host for data persistence.
ex: `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:
+
+`sudo docker run --rm -i -t -p 80:80 -p 27017:27017 -v $(pwd):/root/misskey -v /data/db:/data/db --env NODE_ENV=production misskey`
+
Note that $(pwd) is the working directory.
## Launch