iceshrimp-legacy/docs/docker.en.md

30 lines
902 B
Markdown
Raw Normal View History

2017-05-18 17:52:50 +02:00
Setup with Docker :whale:
================================================================
Ensure that the working directory is the repository root directory.
To create misskey image:
2017-05-19 01:04:24 +02:00
``` console
$ sudo docker build -t misskey ./docker
```
2017-05-18 17:52:50 +02:00
To run misskey:
2017-05-19 01:04:24 +02:00
``` console
$ sudo docker run --rm -i -t -p $PORT:80 -v $(pwd):/root/misskey -v $DBPATH:/data/db misskey
```
2017-05-18 17:52:50 +02:00
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.
2017-05-19 01:04:24 +02:00
ex:
``` console
$ sudo docker run --rm -i -t -p 80:80 -v $(pwd):/root/misskey -v /data/db:/data/db misskey
```
2017-05-18 17:52:50 +02:00
If you want to run misskey in production mode, add `--env NODE_ENV=production` like this:
2017-05-19 01:04:24 +02:00
``` console
$ sudo docker run --rm -i -t -p 80:80 -v $(pwd):/root/misskey -v /data/db:/data/db --env NODE_ENV=production misskey
```
2017-05-18 17:52:50 +02:00
Note that `$(pwd)` is the working directory.