docker-bits/lsio/sqlitebrowser/docker-compose.yaml

25 lines
853 B
YAML
Raw Normal View History

2021-04-21 00:55:42 +00:00
# [DB Browser for SQLite](https://sqlitebrowser.org/) is a high quality, visual,
# open source tool to create, design, and edit database files compatible with
# SQLite.
2021-04-10 10:16:29 +00:00
---
version: "2.1"
services:
sqlitebrowser:
image: ghcr.io/linuxserver/sqlitebrowser
container_name: sqlitebrowser
environment:
# for GroupID
- PUID=${PUID:-1024}
# for UserID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
2021-04-13 00:58:58 +00:00
- TZ=${TZ:-Europe/Amsterdam}
2021-04-10 10:16:29 +00:00
volumes:
# Users home directory in the container, stores program settings and potentially dump files.
- ${BASEDIR:-/volume1/docker}/sqlitebrowser/config:/config
ports:
# Sqlitebrowser desktop gui, only use this if you are not using host mode and sniffing Docker network traffic.
- 3000:3000
restart: unless-stopped