Stop Buster Services
Thebuster stop command gracefully shuts down all running Buster services that were started with the buster start command. This frees up system resources when you’re not actively using Buster.
Basic Usage
What It Does
When you runbuster stop, the following happens:
- Identifies the Docker Compose configuration in your
~/.busterdirectory - Runs
docker compose downto stop and remove all containers - Preserves all data and configuration for the next start
- Stops all Buster service containers
- Removes the containers from memory
- Maintains all data volumes and configuration files
- Allows for a clean restart later
Example Output
Data Persistence
Thestop command only stops the running services. It does not:
- Delete any data in your database
- Remove configuration files
- Delete Docker images
- Remove Docker volumes
buster start.
When to Use
You should usebuster stop when:
- You’re done using Buster for the day
- You need to free up system resources
- You want to clean up running containers
- Before shutting down your computer
- Before running
buster resetif you want a clean reset
Troubleshooting
If you encounter issues with the stop command:- Services still running: Check Docker status with
docker ps - Permission issues: Ensure you have the necessary permissions to manage Docker
- Directory not found: Ensure you’ve previously run
buster start