Container Svc
The Container Svc manages Docker containers on individual nodes, providing a unified API for container lifecycle management, image building, and resource monitoring.
This page provides a comprehensive overview of
Container Svc
. For detailed API information, refer to the Container Svc API documentation.
Architecture
The Container Svc is node-local and non-distributed—each instance only manages containers on its own node. This design simplifies container management while supporting advanced features like GPU acceleration and persistent storage.
Access Control
Container Svc uses permission-based access control:
container-svc:container:view
- View container informationcontainer-svc:container:run
- Create and start containerscontainer-svc:container:stop
- Stop containerscontainer-svc:log:view
- View container logscontainer-svc:image:build
- Build custom images
By default, these permissions are granted to:
- model-svc and deploy-svc for container operations
- Administrators for all container management operations
System Requirements
Docker Configuration
- Docker daemon must be running and accessible
- Docker socket must be mounted (typically
/var/run/docker.sock
) - User must have Docker permissions
Common Issues
Docker Permission Denied
# Add user to docker group
sudo usermod -aG docker $USER
# Restart session or run
newgrp docker
GPU Not Detected
# Check NVIDIA drivers
nvidia-smi
# Verify Docker GPU support
docker run --rm --gpus all nvidia/cuda:11.0-base nvidia-smi
Container Won't Start
- Check Docker daemon status:
systemctl status docker
- Verify image availability:
docker images
- Review container logs via Container Svc API
Port Conflicts
- Use dynamic port allocation or check for port conflicts
- Review existing container port mappings
Related Services
- Model Svc - AI model deployment and management
- Deploy Svc - Service deployment orchestration
- File Svc - Asset downloading and file management
- Registry Svc - Node and instance registry