coolify/templates/compose/litequeen.yaml

20 lines
574 B
YAML
Raw Normal View History

2024-10-11 04:59:55 +00:00
# documentation: https://litequeen.com/
# slogan: Manage SQLite databases on your server with ease.
2024-10-11 05:40:28 +00:00
# tags: sqlite, sqlite-database-management, self-hosted, VPS, database
2024-10-11 04:59:55 +00:00
# logo: svgs/litequeen.svg
# port: 8000
services:
litequeen:
image: kivsegrob/lite-queen:latest
environment:
- SERVICE_FQDN_LITEQUEEN_8000
2024-10-11 05:40:28 +00:00
- SQLITE_DATABASES_LOCATION=${SQLITE_DATABASES_LOCATION:-/var/www}
2024-10-11 04:59:55 +00:00
volumes:
- litequeen-data:/home/litequeen/data
2024-10-11 05:40:28 +00:00
- type: bind
source: ${SQLITE_DATABASES_LOCATION}
target: /www
is_directory: true