mirror of
https://github.com/opendatabs/datasette-bs.git
synced 2026-08-26 12:24:26 +00:00
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%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| data | ||
| plugins | ||
| static/bs | ||
| templates | ||
| .env.example | ||
| .gitignore | ||
| docker-compose.override.yml | ||
| docker-compose.yaml | ||
| Dockerfile | ||
| LICENSE | ||
| README.md | ||
| renovate.json | ||
| requirements.txt | ||
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