The environment that the Aldahar server runs ad builds in.
1.6K
Docker User: If you don't have access to the aldahar-server github repo, then this is probably not useful to you
First, pull the aldahar-server repo.
$ cd aldahar-server
$ docker run -it --rm -p 8081:8081 -v `pwd`:/aldahar --add-host database:$(ifconfig | grep -E "([0-9]{1,3}\.){3}[0-9]{1,3}" | grep -v 127.0.0.1 | awk '{ print $2 }' | cut -f2 -d: | head -n1) jrupp/aldahar-server
Once inside the container:
$ cd /aldahar
$ mkdir build
$ cd build
$ cmake ..
$ make
Then, to startup the Aldahar server (again from inside the container):
$ ../aldahar
You will now have the code on your local machine (so you can edit it there in your favorite editor), and an environment which can build and run the code.
Content type
Image
Digest
Size
245.6 MB
Last updated
almost 10 years ago
docker pull jrupp/aldahar-server