Skip to content

Latest commit

 

History

History
58 lines (37 loc) · 729 Bytes

File metadata and controls

58 lines (37 loc) · 729 Bytes

Install using Docker

Build the server binary files

First, build the docker image:

docker build -t darkeden .

Second, run the container

docker run -v `pwd`:/home/darkeden/vs/ -it darkeden /bin/bash

On Windows pwd should be changed to %cd%

docker run -v %cd%/:/home/darkeden/vs/ -it darkeden /bin/bash

Third, build the darkeden server binary files

make

and you can add -j 8 to the make command.

Run using docker-compose

cd docker
docker-compose up -d

Login to server container:

docker exec -w /home/darkeden/vs/bin -it docker_odk-server_1  /bin/bash

Run the server:

./start.sh

Stop all:

./stop.sh
docker-compose down