Comment on page
Docker Deployment
Create PuppyGraph Instance from Docker Image
- Platform: PuppyGraph is running on amd64 architecture and CPU must support avx2 instruction set. Run
cat /proc/cpuinfo | grep avx2
command to view the instruction set supported by the node CPU. If the result is returned, it indicates that the CPU supports the avx2 instruction set. - Docker: PuppyGraph can be deployed with Docker Image, and this is the recommended way for evaluation. Make sure you have docker daemon properly configured by running the following command in shell and see if there are any errors.
docker ps
Run the following command to get the docker image:
docker pull puppygraph/puppygraph:stable
docker run -p 8080:8080 -p 8081:8081 -p 8182:8182 -d --name puppy --rm puppygraph/puppygraph:stable
You can then access PuppyGraph in your browser with the URL http://<hostname>:8081/.
Last modified 2mo ago