Skip to content

Latest commit

 

History

History
executable file
·
72 lines (49 loc) · 1.78 KB

File metadata and controls

executable file
·
72 lines (49 loc) · 1.78 KB

Docker Integration Guides

Comprehensive guides for Docker deployment, caching, and containerized runners.

Quick Links

Cache Guides

Container Setup

Security

Quick Start

Build and Run Container

# Build the container
docker build -t ipfs-accelerate .

# Run inference container
docker run -p 8080:8080 \
  -v $(pwd)/models:/models \
  ipfs-accelerate

# Run with GPU support
docker run --gpus all \
  -p 8080:8080 \
  ipfs-accelerate

Docker Compose

# Start all services
docker-compose up -d

# Check status
docker-compose ps

# View logs
docker-compose logs -f

# Stop services
docker-compose down

See Also


Last Updated: January 2026