Overseas access: www.kdjingpai.com
Bookmark Us
Current Position:fig. beginning " AI Answers

How to quickly deploy DeepGemini via Docker and what are the exact steps?

2025-08-27 1.6 K

The Complete Guide to Docker Deployment

DeepGemini offers two Docker deployment options, which are as followsRecommended Workflow::

  1. environmental preparation::
    • fulfillmentdocker pull bradleylzh/deepgemini:latestGetting the latest mirrors
    • Copy the environment template filecp .env.example .env
    • Creating an empty database fileecho "" > deepgemini.db
  2. Key Configurations: Edit the .env file to at least configure it:
    • ALLOW_API_KEY: Setting the access key
    • ALLOW_ORIGINS: Configure cross-domain permissions (production environments recommend specifying the domain name instead of *)
    • API key for each model (e.g. DEEPSEEK_API_KEY)
  3. Launch Container::
    • Base Command:docker run -d -p 8000:8000 -v $(pwd)/.env:/app/.env -v $(pwd)/deepgemini.db:/app/deepgemini.db --name deepgemini
    • Recommendeddocker-compose up -d(Compose files need to be configured in advance)

Visit after successful deploymenthttp://localhost:8000/dashboardYou can enter the management interface. If there is a port conflict, modify the-p 宿主端口:8000Ready to go.

Recommended

Can't find AI tools? Try here!

Just type in the keyword Accessibility Bing SearchYou can quickly find all the AI tools on this site.

Top