File tree 2 files changed +30
-0
lines changed
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash -ex
2
+
3
+ # Nothing to do
4
+ # This file exists to prevent manage-tools install from returning 1
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments