Skip to content
This repository was archived by the owner on Oct 4, 2024. It is now read-only.

generation-software/graphgpt-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker GitHub Workflow Status Last Commit Apache License Badge

GraphGPT Docker Image

This image can be used for quick provisioning of GraphGPT in the case of

  1. No VPN access to HuggingFace
  2. Local Dev/Testing

Getting Image

Docker Hub

We can pull the image from my docker hub:

docker pull jack20191124/graphgpt

GitHub

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 .

Standing Up a Container

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

GraphGPT Inferencing

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

License

The use and distribution terms for [graphgpt-docker] are covered by the Apache License, Version 2.0.

About

Docker image of GraphGPT

Resources

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published