mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 23:33:09 +02:00
✌️
This commit is contained in:
parent
5f78ef943e
commit
c3d5ed19b8
3 changed files with 16 additions and 15 deletions
16
README.md
16
README.md
|
@ -39,6 +39,22 @@ Misskey requires two domains called the primary domain and the secondary domain.
|
|||
### reCAPTCHA
|
||||
Please visit https://www.google.com/recaptcha/intro/ and generate keys.
|
||||
|
||||
## Setup with Docker
|
||||
Ensure that the working directory is the repository root directory.
|
||||
|
||||
To create misskey image:
|
||||
`sudo docker build -t misskey`
|
||||
|
||||
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.
|
||||
|
||||
## Launch
|
||||
`sudo npm start`
|
||||
|
||||
|
|
|
@ -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.
|
Loading…
Reference in a new issue