-
Clone this repository the machine that you intend on running the NoobDocs sync server on.
-
CD into the cloned repository and into
sync_server
cd NoobDocsGodot
cd sync_server
-
Open the
config.json
and change theip
field to0.0.0.0
, while you are in here, change your security token and port to what you wish. -
Open the file titled
dockerfile
, and where it saysEXPOSE 8567
, change that toEXPOSE {{YOUR DESIRED PORT}}
Example:
EXPOSE 8485
-
Run the command
docker build -t noobdocs-sync-server .
Addsudo
before the command if getting an authorization error. -
Run the command
docker run -d --name noobdocs_sync_server -p {YOUR TARGET PORT}:{YOUR TARGET PORT} noobdocs-sync-server
Example
docker run -d --name noobdocs_sync_server -p 8485:8485 noobdocs-sync-server