Read-only mirror of https://github.com/opendatabs/datasette-bs — Kanton Basel-Stadt. Issues & pull requests at the source.
  • CSS 53.9%
  • HTML 44.9%
  • Python 0.6%
  • Dockerfile 0.6%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-06-04 14:51:56 +02:00
data Correct title and description in metadata.yml and index.html for consistency and clarity 2026-06-02 11:23:02 +02:00
plugins Add Docker Compose override and enhance metadata and templates 2026-06-02 10:57:14 +02:00
static/bs Add Docker Compose override and enhance metadata and templates 2026-06-02 10:57:14 +02:00
templates Enhance table template structure 2026-06-04 14:51:56 +02:00
.env.example Add .env.example and LICENSE files 2026-06-01 12:00:02 +02:00
.gitignore Enhance project structure and styling 2026-06-01 15:45:36 +02:00
docker-compose.override.yml Add Docker Compose override and enhance metadata and templates 2026-06-02 10:57:14 +02:00
docker-compose.yaml Add Docker Compose override and enhance metadata and templates 2026-06-02 10:57:14 +02:00
Dockerfile Update datasetteproject/datasette Docker tag to v0.65.2 2025-12-11 23:48:15 +00:00
LICENSE Add .env.example and LICENSE files 2026-06-01 12:00:02 +02:00
README.md Add .env.example and LICENSE files 2026-06-01 12:00:02 +02:00
renovate.json Add renovate.json 2025-05-14 13:27:37 +00:00
requirements.txt Enhance project structure and styling 2026-06-01 15:45:36 +02:00

Datasette on Docker

Start

docker network create webnet   # once
docker compose run --rm datasette-inspect   # after adding or changing .db files in data/
docker compose up -d --build

Put SQLite files in data/. For GitHub auth: cp .env.example .env and fill in the values.

Datasette listens on port 8001 on the webnet network—point your reverse proxy at datasette:8001.

Upgrade Datasette

Change the version in Dockerfile, then:

docker compose down
docker compose build
docker compose up -d