Secure by Design, Built for Speed, Hardened Container Images on a minimal base CleanStart OS.
10K+
The CleanStart Git image provides a production-ready, security-hardened container optimized for enterprise environments. Built on a minimal base OS with comprehensive security hardening, this image delivers reliable application execution with advanced security features.
š Base Foundation: Production-ready container from cleanstart.
Image Path: cleanstart/git
Registry: cleanstart Registry
Download the container image from the registry
docker pull cleanstart/git:latest
docker pull cleanstart/git:latest-dev
Run the container with basic configuration
docker run -it --name git cleanstart/git:latest --version
Deploy with production security settings
docker run -d --name git-prod \
--security-opt=no-new-privileges \
--user 1000:1000 \
--restart unless-stopped \
cleanstart/git:latest --version
Volume Mount Mount local directory for persistent data
docker run -v /app:/app cleanstart/git:latest --version
Port Forwarding Run with custom port mappings
docker run -p 8080:8080 cleanstart/git:latest --version
Recommended security context for Kubernetes deployments
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
runAsUser: 1000
runAsGroup: 1000
Essential links and resources for further information
CleanStart Images: https://images.cleanstart.com/ā
Community Images:
Docker Hub: https://hub.docker.com/u/cleanstartā
GitHub: https://github.com/cleanstart-containersā
AWS ECR Public Gallery: https://gallery.ecr.aws/cleanstart/ā
Presence on Social Media:
Community: https://www.linkedin.com/groups/18324021/ā
YouTube: https://www.youtube.com/@CleanStartOfficialā
Contribute to Container Use Cases: https://github.com/cleanstart-dev/cleanstart-use-cases/ā
Content type
Image
Digest
sha256:95cced4c1ā¦
Size
33.2 MB
Last updated
1 day ago
docker pull cleanstart/git:2.55.0-amd64