Added db for SolidQueue/SolidCache

This commit is contained in:
2025-06-01 18:26:43 +02:00
parent 54e480272c
commit 3001eb617d

View File

@@ -33,6 +33,9 @@ services:
- type: bind - type: bind
source: /srv/dawarich/storage source: /srv/dawarich/storage
target: /var/app/storage target: /var/app/storage
- type: bind
source: /srv/dawarich/db_data
target: /dawarich_db_data
networks: networks:
- dawarich - dawarich
ports: ports:
@@ -67,6 +70,9 @@ services:
PHOTON_API_HOST: ${PHOTON_API_HOST} PHOTON_API_HOST: ${PHOTON_API_HOST}
PHOTON_API_KEY: ${PHOTON_API_KEY} PHOTON_API_KEY: ${PHOTON_API_KEY}
SELF_HOSTED: "true" SELF_HOSTED: "true"
QUEUE_DATABASE_PATH: /dawarich_db_data/dawarich_development_queue.sqlite3
CACHE_DATABASE_PATH: /dawarich_db_data/dawarich_development_cache.sqlite3
CABLE_DATABASE_PATH: /dawarich_db_data/dawarich_development_cable.sqlite3
logging: logging:
driver: "json-file" driver: "json-file"
options: options:
@@ -158,3 +164,4 @@ volumes:
dawarich_public: dawarich_public:
dawarich_watched: dawarich_watched:
dawarich_storage: dawarich_storage:
dawarich_db_data: