22 lines
549 B
Bash
Executable File
22 lines
549 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# docker_clean.sh - Remove a PostgreSQL Docker container
|
|
# Usage: ./docker_clean.sh [container_name]
|
|
|
|
set -e # Exit immediately if a command exits with a non-zero status
|
|
|
|
CONTAINER="${1:-postgres}"
|
|
|
|
if ! docker ps -a --format '{{.Names}}' | grep -q "^${CONTAINER}$"; then
|
|
echo "Container $CONTAINER does not exist"
|
|
exit 0
|
|
fi
|
|
|
|
if docker ps --format '{{.Names}}' | grep -q "^${CONTAINER}$"; then
|
|
echo "Stopping container $CONTAINER"
|
|
docker stop "$CONTAINER"
|
|
fi
|
|
|
|
echo "Removing container $CONTAINER"
|
|
docker rm "$CONTAINER"
|