8 lines
234 B
Bash
8 lines
234 B
Bash
#!/bin/bash
|
|
# stop-app.sh: Stops the Docker application services without removing containers or volumes.
|
|
# This ensures the current state is maintained even if configuration changes later.
|
|
|
|
docker-compose stop
|
|
|
|
echo "Stopping app..."
|