diff --git a/stego-toolkit/install b/stego-toolkit/install new file mode 100755 index 0000000..e20aa21 --- /dev/null +++ b/stego-toolkit/install @@ -0,0 +1,4 @@ +#!/bin/bash -ex + +# Nothing to do +# This file exists to prevent manage-tools install from returning 1 diff --git a/stego-toolkit/install-root-debian b/stego-toolkit/install-root-debian new file mode 100755 index 0000000..851bd5b --- /dev/null +++ b/stego-toolkit/install-root-debian @@ -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