SQLite3 on alpine (with curl and wget)
5.4K
This is a minimal Docker image with SQLite based on Alpine Linux.
The image also bundles wget, curl and ca-certificates to allow requests over HTTPS.
It will renovate and auto build on new versions of Alpine Linux and SQLite.
docker --rm -it -v $(pwd):/data johnlindahl/sqlite:latest ash
sqlite3 /data/mydb.db
version: "3.7"
services:
sqlite:
image: johnlindahl/sqlite:latest
volumes:
- ./data:/data/
entrypoint: sqlite3 /data/mydb.db
Content type
Image
Digest
sha256:0420ef1bf…
Size
9 MB
Last updated
over 2 years ago
docker pull johnlindahl/sqlite