Simplify / stop_local.sh
Rsr2425's picture
Set up FE testing
50f8987
raw
history blame contribute delete
211 Bytes
#!/bin/bash
echo "Stopping simplify container..."
docker stop simplify 2>/dev/null || true
echo "Removing simplify container..."
docker rm simplify 2>/dev/null || true
echo "Services stopped and cleaned up!"