convert to gitea
This commit is contained in:
11
promteams/stop_promteams.sh
Normal file
11
promteams/stop_promteams.sh
Normal file
@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
CONTAINER_NAME="promteams"
|
||||
|
||||
if [ $(docker ps -q -f name=$CONTAINER_NAME) ]; then
|
||||
echo "Prometheus-MSTeams 컨테이너($CONTAINER_NAME)를 중지하고 삭제합니다."
|
||||
docker stop $CONTAINER_NAME
|
||||
docker rm $CONTAINER_NAME
|
||||
echo "완료되었습니다."
|
||||
else
|
||||
echo "실행 중인 Prometheus-MSTeams 컨테이너가 없습니다."
|
||||
fi
|
||||
Reference in New Issue
Block a user