Minor fixes for Docker and Javascript (#49)

* fix compose dependency

* add volume data to .dockerignore

* remove unused alpine.js import
This commit is contained in:
Richard Palethorpe
2025-03-15 18:10:59 +00:00
committed by GitHub
parent aea0b424b9
commit dc2570c90b
3 changed files with 5 additions and 3 deletions

View File

@@ -45,6 +45,9 @@ services:
- ./volumes/localrag/assets/:/assets
ragserver-healthcheck:
depends_on:
ragserver:
condition: service_started
image: busybox
command: ["sh", "-c", "until wget -q -O - http://ragserver:8080 > /dev/null 2>&1; do echo 'Waiting for ragserver...'; sleep 1; done; echo 'RagServer is up!'"]