cleanstart/sqlite3

Verified Publisher

By CleanStart

•Updated about 12 hours ago

Secure by Design, Built for Speed, Hardened Container Images on a minimal base CleanStart OS.

Image
0

50K+

cleanstart/sqlite3 repository overview

Container Documentation for Sqlite3

Enterprise-ready SQLite3 container image providing a self-contained, serverless, zero-configuration, transactional SQL database engine. Optimized for embedded systems, application testing, and lightweight database needs with ACID compliance and high reliability.

šŸ“Œ Base Foundation: Security-hardened, minimal base OS designed for enterprise containerized environments from Registry.Example Registry.

Key Features Core capabilities and strengths of this container

  • Zero-configuration, serverless database engine
  • ACID-compliant transactions
  • Security-hardened base configuration
  • Multi-architecture support

Common Use Cases Typical scenarios where this container excels

  • Embedded database applications
  • Application testing and development
  • Local data storage and caching
  • Lightweight database solutions

Pull Latest Image Download the container image from the registry

docker pull cleanstart/sqlite3:latest
docker pull cleanstart/sqlite3:latest-dev

Basic Run Run the container with basic configuration

docker run -it --name sqlite3-test cleanstart/sqlite3:latest-dev

Production Deployment Deploy with production security settings

docker run -d --name sqlite3-prod \
  --read-only \
  --security-opt=no-new-privileges \
  --user 1000:1000 \
  cleanstart/sqlite3:latest

Volume Mount Mount local directory for persistent data

docker run -v $(pwd)/data:/data cleanstart/sqlite3:latest

Port Forwarding Run with custom port mappings

docker run -p 8080:80 cleanstart/sqlite3:latest

Environment Variables Configuration options available through environment variables

VariableDefaultDescription
SQLITE_DATABASE/data/db.sqliteDefault database file location
SQLITE_MODErwcDatabase access mode
SQLITE_JOURNAL_MODEWALJournal mode setting
SQLITE_CACHE_SIZE-2000Database cache size in KB

Security Best Practices Recommended security configurations and practices

  • Use specific image tags for production deployments
  • Implement proper file permissions for database files
  • Enable read-only root filesystem
  • Run as non-root user
  • Regular backup of database files
  • Monitor database file integrity
  • Implement proper access controls
  • Use WAL journal mode for better concurrency

Kubernetes Security Context Recommended security context for Kubernetes deployments

securityContext:
  runAsNonRoot: true
  runAsUser: 1000
  runAsGroup: 1000
  readOnlyRootFilesystem: true
  allowPrivilegeEscalation: false
  capabilities:
    drop: ["ALL"]

Multi-Platform Images

docker pull --platform linux/amd64 cleanstart/sqlite3:latest
docker pull --platform linux/arm64 cleanstart/sqlite3:latest

⁠Documentation Resources

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/⁠

Tag summary

Content type

Image

Digest

sha256:16fb839e9…

Size

22.8 MB

Last updated

about 12 hours ago

docker pull cleanstart/sqlite3:3.53.3-arm64