windows_launch.bat 455 B

1234567891011121314
  1. @echo off
  2. REM Start the containers in detached mode
  3. docker-compose up -d
  4. REM Execute the script inside the 'dolistripe' container
  5. docker exec --user root dolistripe /mnt/dolistripe/launch.sh
  6. REM Wait for the script to complete and shut down the containers
  7. docker-compose down
  8. REM Optional: Remove all stopped containers, unused networks, images, and optionally, volumes
  9. REM docker-compose down --rmi all --volumes
  10. echo Operation completed