November 2022
Intermediate to advanced
294 pages
5h 58m
English
Dgraph is available from Dgraph Labs.[116]
For help with installing Dgraph, you should go to the site’s Get Started[117] page, or for a tutorial walkthrough, go to the Tour[118] page.
Dgraph no longer supports Windows and Macs directly but instead makes the latest versions of Dgraph available as Docker images. So, you’ll need to install Docker first. See the Download page.[119]
Create a folder to store Dgraph data outside of the container:
| | $ mkdir -p ~/dgraph |
Now get the Docker image:
| | $ docker pull dgraph/standalone |
And then run the Docker image:
| | $ docker run -itd --rm -p 5080:5080 -p 6080:6080 -p 8080:8080 -p 9080:9080 \ |
| | -p 8000:8000 ... |
Read now
Unlock full access