Skip to content

Commit 3829d66

Browse files
zwimerzardus
authored andcommitted
stego-toolkit added
1 parent e77f7c0 commit 3829d66

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

stego-toolkit/install

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

stego-toolkit/install-root-debian

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/bin/bash -ex
2+
3+
# Install docker if needed
4+
set +e
5+
if which docker 2> /dev/null > /dev/null ; then
6+
set -e
7+
else
8+
set -e
9+
apt-get install -y \
10+
apt-transport-https \
11+
ca-certificates \
12+
curl \
13+
software-properties-common
14+
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
15+
add-apt-repository \
16+
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
17+
$(lsb_release -cs) \
18+
stable"
19+
apt-get install docker-ce -y
20+
fi
21+
22+
# Pull the container
23+
docker pull dominicbreuker/stego-toolkit:latest
24+
25+
# To run the container, execute:
26+
# sudo docker run -it dominicbreuker/stego-toolkit /bin/bash

0 commit comments

Comments
 (0)