やった
This commit is contained in:
parent
27a519cb1c
commit
6e57ef281d
14 changed files with 135 additions and 97 deletions
23
docs/docker.en.md
Normal file
23
docs/docker.en.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
Setup with Docker :whale:
|
||||
================================================================
|
||||
|
||||
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
|
||||
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 -v $(pwd):/root/misskey -v /data/db:/data/db --env NODE_ENV=production misskey`
|
||||
|
||||
Note that `$(pwd)` is the working directory.
|
Loading…
Add table
Add a link
Reference in a new issue