-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathupdate_Docker_app.sh
40 lines (28 loc) · 920 Bytes
/
update_Docker_app.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/bash
# Check if image name is provided as an argument
if [ -z "$1" ]; then
echo "Usage: $0 <image_name>"
exit 1
fi
# Get the image name from the command-line argument
image_name="$1"
# Get the container ID based on the image name
container_id=$(sudo docker ps -a --filter "ancestor=$image_name" --format "{{.ID}}")
# Check if a container ID was found
if [ -z "$container_id" ]; then
echo "No container found for image: $image_name"
exit 1
fi
# Stop the container
sudo docker stop "$container_id"
# Remove the container
sudo docker rm "$container_id"
echo "Container $container_id stopped and removed successfully."
# Remove the image
sudo docker rmi "$image_name"
echo "Image $image_name removed successfully."
# Pull the updated image
sudo docker pull "$image_name"
echo "Image $image_name pulled successfully."
# Launch the updated container
sudo docker run -p 8501:8501 $image_name