diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2016-12-31 06:38:14 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2016-12-31 06:38:14 +0900 |
| commit | c3d5ed19b890ff6c4f3d2d21bf7cbab8d58bf913 (patch) | |
| tree | b41c8405d59cf448270eafd126e9e17e50c73902 /docker/README.md | |
| parent | Desktop: Fix bug (diff) | |
| download | misskey-c3d5ed19b890ff6c4f3d2d21bf7cbab8d58bf913.tar.gz misskey-c3d5ed19b890ff6c4f3d2d21bf7cbab8d58bf913.tar.bz2 misskey-c3d5ed19b890ff6c4f3d2d21bf7cbab8d58bf913.zip | |
:v:
Diffstat (limited to 'docker/README.md')
| -rw-r--r-- | docker/README.md | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/docker/README.md b/docker/README.md deleted file mode 100644 index b97670e566..0000000000 --- a/docker/README.md +++ /dev/null @@ -1,15 +0,0 @@ -# How to use Misskey with Docker -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` - -Note that $(pwd) is the working directory. |