This image can be used for quick provisioning of GraphGPT in the case of
- No VPN access to HuggingFace
- Local Dev/Testing
We can pull the image from my docker hub:
docker pull jack20191124/graphgpt
We could also build the image from GitHub repository:
git clone https://github.com/QubitPi/graphgpt-docker.git
cd jupiter
docker build -t jack20191124/graphgpt .
When image is on our machine (either by pulling or building), we can spin up a GraphGPT instance by
docker run -d --name=graphgpt -it -p 7860:7860 jack20191124/graphgpt
- name=graphgpt: the container is named "graphgpt". We can change it accordingly.
- -p 7860:7860: the port-forwarding from host's 7860 to the GraphGPT app running in container at 7860
- -d: keeps container running in background after start
After container starts up successfully, please visit http://localhost:7860/docs, which is a Swagger API that guides us to send our first inferencing request
The use and distribution terms for [graphgpt-docker] are covered by the Apache License, Version 2.0.