-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart-all.sh
executable file
·56 lines (44 loc) · 1.19 KB
/
start-all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#! /bin/bash
# Boilerplate
# find . -mindepth 2 -maxdepth 2 | grep -v "./venv"| grep -v "./.ctf/" | awk '{print substr($1,3); }' | awk '{print "pushd " $1 "\n\tsudo docker compose up -d" "\npopd\n"}'
pushd jail/ChriSHmaSH
sudo docker compose up -d
popd
pushd crypto/booleanWonderland
sudo docker build -t booleanwonderland .
sudo docker run -d -p 2222:22 --name booleanwonderland booleanwonderland
popd
pushd web/opain
sudo docker compose up -d
popd
pushd web/SantaVision
sudo docker compose up -d
popd
pushd web/santa_recipe_processor
sudo docker compose up -d
popd
pushd web/succ
sudo docker compose up -d
popd
pushd pwn/sleigh_ride
sudo docker compose up -d
popd
pushd web/WinterBoot
docker build -t winterboot .
sudo docker compose up --build -d
popd
pushd web/custom_tshirts
docker build -t flask-app .
docker run -d -p 15685:15685 flask-app
popd
pushd web/christmas_RESTored
docker rmi christmas-restored
docker image build -t christmas-restored .
docker container run -d -p 34340:5000 --rm christmas-restored
popd
pushd web/FENtastic/deployment
sudo docker compose up -d
popd
pushd pwn/baby_autopwn
sudo docker compose up -d
popd