You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
756B

  1. @echo off
  2. echo =========================================
  3. echo Lancement des services Docker Compose (WSL)
  4. echo =========================================
  5. :: Service Ollama Batch
  6. start "Ollama Batch" wsl -d Ubuntu-22.04 sh -c "cd ~/ollama_batch_docker && docker compose up"
  7. :: Service Ollama Demand
  8. start "Ollama Demand" wsl -d Ubuntu-22.04 sh -c "cd ~/ollama_demand_docker && docker compose up"
  9. :: Service Qdrant
  10. start "Qdrant" wsl -d Ubuntu-22.04 sh -c "cd ~/qdrant_docker && docker compose up"
  11. :: Service Fooocus
  12. start "Fooocus" wsl -d Ubuntu-22.04 sh -c "cd ~/fooocus_docker && docker compose up"
  13. :: Service Whipster
  14. start "Whipster" wsl -d Ubuntu-22.04 sh -c "cd ~/whipster_api_docker && docker compose up"
  15. echo Tous les services sont OK.
  16. pause