Sign inSign up

johnlindahl/sqlite

By johnlindahl

•Updated over 2 years ago

SQLite3 on alpine (with curl and wget)

Image
0

5.4K

johnlindahl/sqlite repository overview

⁠SQLite Alpine

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.

⁠Usage

⁠docker run
docker --rm -it -v $(pwd):/data johnlindahl/sqlite:latest ash
sqlite3 /data/mydb.db
⁠Docker compose
version: "3.7"
services:
  sqlite:
    image: johnlindahl/sqlite:latest
    volumes:
      - ./data:/data/
    entrypoint: sqlite3 /data/mydb.db

Tag summary

Content type

Image

Digest

sha256:0420ef1bf…

Size

9 MB

Last updated

over 2 years ago

docker pull johnlindahl/sqlite