stego-toolkit added

This commit is contained in:
zwimer 2018-11-22 14:52:09 -07:00 committed by Yan
parent e77f7c0427
commit 3829d66ca9
2 changed files with 30 additions and 0 deletions

4
stego-toolkit/install Executable file
View file

@ -0,0 +1,4 @@
#!/bin/bash -ex
# Nothing to do
# This file exists to prevent manage-tools install from returning 1

View file

@ -0,0 +1,26 @@
#!/bin/bash -ex
# Install docker if needed
set +e
if which docker 2> /dev/null > /dev/null ; then
set -e
else
set -e
apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
apt-get install docker-ce -y
fi
# Pull the container
docker pull dominicbreuker/stego-toolkit:latest
# To run the container, execute:
# sudo docker run -it dominicbreuker/stego-toolkit /bin/bash