SQLiteBrowser Docker
DB Browser for SQLite is a high quality, visual, open source tool to create, design, and edit database files compatible with SQLite.
Directory Structure
- .env
- docker-compose.yml
docker-compose.yml
version: "3"
services:
sqlitebrowser:
image: lscr.io/linuxserver/sqlitebrowser:latest
container_name: sqlitebrowser
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- /path/to/config:/config
ports:
- 3000:3000
- 3001:3001
restart: unless-stoppedResources
Website: https://sqlitebrowser.org/
Docker Hub: https://hub.docker.com/r/linuxserver/sqlitebrowser
Configuration: https://github.com/linuxserver/docker-sqlitebrowser