add sentinel + correction ninegate/nineskeletor + add nine pull
This commit is contained in:
@ -10,3 +10,5 @@ services:
|
||||
- nine-network
|
||||
environment:
|
||||
- TZ=Europe/Paris
|
||||
volumes:
|
||||
- ./services/30-redis/volume/data:/data:rw
|
||||
|
@ -18,6 +18,16 @@ function destroyredis(){
|
||||
stop $REDIS_SERVICE_NAME 1
|
||||
docker-compose rm -s -v -f "$REDIS_SERVICE_NAME"
|
||||
|
||||
if [[ -z $1 ]]; then
|
||||
Question_ouinon "Souhaitez-vous supprimer la BDD associé à $REDIS_SERVICE_NAME ?";
|
||||
response=$?
|
||||
fi
|
||||
if [[ "$response" == 0 || ! -z $1 ]]
|
||||
then
|
||||
EchoRouge "Delete BDD = $REDIS_SERVICE_NAME"
|
||||
rm -rf services/30-redis/volume/data
|
||||
fi
|
||||
|
||||
echo ""
|
||||
fi
|
||||
}
|
Reference in New Issue
Block a user