Add matcher to docker-compose files

This commit is contained in:
Zoe Roux 2024-04-09 23:45:37 +02:00
parent d0901c7267
commit 0f3f33a9e6
No known key found for this signature in database
2 changed files with 24 additions and 0 deletions

View File

@ -59,6 +59,18 @@ services:
volumes:
- ${LIBRARY_ROOT}:/video:ro
matcher:
image: zoriya/kyoo_scanner:latest
command: matcher
restart: unless-stopped
depends_on:
back:
condition: service_healthy
env_file:
- ./.env
environment:
- KYOO_URL=${KYOO_URL:-http://back:5000}
autosync:
image: zoriya/kyoo_autosync:latest
restart: on-failure

View File

@ -60,6 +60,18 @@ services:
volumes:
- ${LIBRARY_ROOT}:/video:ro
matcher:
build: ./scanner
command: matcher
restart: unless-stopped
depends_on:
back:
condition: service_healthy
env_file:
- ./.env
environment:
- KYOO_URL=${KYOO_URL:-http://back:5000}
autosync:
build: ./autosync
restart: on-failure