point to 16.10 images on dockerhub

This commit is contained in:
t3chn0m4g3
2016-05-30 14:51:32 +00:00
parent 0d5e881c47
commit acf1c804ee
21 changed files with 18 additions and 337 deletions

View File

@ -34,8 +34,7 @@ done
# We do not want to get interrupted by a check
touch /var/run/check.lock
# Stop T-Pot services and delete all T-Pot upstart scripts
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# Stop T-Pot services and disable all T-Pot services
echo "### Stopping T-Pot services and cleaning up."
for i in $(cat /data/imgcfg/all_images.conf);
do
@ -43,7 +42,6 @@ for i in $(cat /data/imgcfg/all_images.conf);
sleep 2
systemctl disable $i;
done
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# Restarting docker services
echo "### Restarting docker services ..."
@ -52,10 +50,10 @@ sleep 2
systemctl start docker
sleep 2
# Setup only T-Pot upstart scripts from images.conf and pull the images
# Enable only T-Pot upstart scripts from images.conf and pull the images
for i in $(cat /data/images.conf);
do
docker pull dtagdevsec/$i:latest1603;
docker pull dtagdevsec/$i:latest1610;
systemctl enable $i;
done