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.
|
- @echo off
- echo =========================================
- echo Arrêt des services Docker Compose (WSL)
- echo =========================================
-
- :: Service Ollama Batch
- start "Ollama Batch" wsl -d Ubuntu-22.04 sh -c "cd ~/ollama_batch_docker && docker compose down"
-
- :: Service Ollama Demand
- start "Ollama Demand" wsl -d Ubuntu-22.04 sh -c "cd ~/ollama_demand_docker && docker compose down"
-
- :: Service Qdrant
- start "Qdrant" wsl -d Ubuntu-22.04 sh -c "cd ~/qdrant_docker && docker compose down"
-
- :: Service Fooocus
- start "Fooocus" wsl -d Ubuntu-22.04 sh -c "cd ~/fooocus_docker && docker compose down"
-
- :: Service Whipster
- start "Whipster" wsl -d Ubuntu-22.04 sh -c "cd ~/whipster_api_docker && docker compose down"
-
- echo Tous les services sont KO.
- pause
|