Available Docker Images
When renting a GPU server on Clore.ai, you can choose from pre-configured Docker images or use your own.
Pre-installed Images
General Purpose
Ubuntu Jupyter
Clean Ubuntu with Jupyter Notebook
Python, CUDA, Jupyter
PyTorch
Ready for deep learning
PyTorch, CUDA, cuDNN
TensorFlow
Google's ML framework
TensorFlow, CUDA, Keras
AI/ML Specific
Stable Diffusion WebUI
AUTOMATIC1111 WebUI
Image generation
ComfyUI
Node-based SD interface
Advanced image workflows
Text Generation WebUI
Oobabooga's interface
LLM inference
Ollama
Run LLMs locally
LLM deployment
vLLM
High-performance LLM serving
Production LLM
Mining
Clore Mining
Pre-configured for mining
HiveOS Compatible
For HiveOS integration
Selecting an Image
Go to Marketplace
Find a server
Click Rent
In the order form, select Docker Image from dropdown
Configure ports if needed
Submit order
Using Custom Docker Images
You can specify any public Docker image from Docker Hub or other registries.
Format
Examples
Requirements for Custom Images
Must be publicly accessible (or use auth)
Should be NVIDIA GPU compatible
Base on CUDA-enabled images for GPU access
Port Configuration
When creating an order, you can expose ports for your applications:
22
SSH (usually pre-configured)
8888
Jupyter Notebook
7860
Gradio apps (SD WebUI, etc.)
3000
Web applications
8080
HTTP services
Setting Custom Ports
In the order form, specify ports to expose:
Environment Variables
You can pass environment variables to your container:
Persistent Storage
Data in
/workspaceis typically persistent during the rentalOther directories may be reset on container restart
Always backup important data externally
Best Practices
Choose appropriate image - Use pre-configured images when possible
Check CUDA version - Ensure compatibility with your workload
Expose only needed ports - For security
Use environment variables - For configuration, not secrets
Test locally first - Verify your custom image works before renting
Troubleshooting
Image won't start
Check if image exists and is public
Verify CUDA/GPU compatibility
Check container logs via SSH
GPU not accessible in container
Ensure image is NVIDIA-compatible
Check NVIDIA drivers:
nvidia-smiVerify CUDA installation:
nvcc --version
Can't access exposed ports
Wait for container to fully start
Check if service is running inside container
Verify firewall/security settings
Last updated
Was this helpful?