-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpull-images.sh
More file actions
executable file
·59 lines (44 loc) · 1.43 KB
/
pull-images.sh
File metadata and controls
executable file
·59 lines (44 loc) · 1.43 KB
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
57
58
59
#!/bin/bash
# Pull base image
echo "🔹 Pulling theb0ys/base:latest"
docker pull theb0ys/base:latest
# Pull apache image
echo "🔹 Pulling theb0ys/apache:latest"
docker pull theb0ys/apache:latest
# Pull bind image
echo "🔹 Pulling theb0ys/bind:latest"
docker pull theb0ys/bind:latest
# Pull dns64 image
echo "🔹 Pulling theb0ys/dns64:latest"
docker pull theb0ys/dns64:latest
# Pull oldap image
echo "🔹 Pulling theb0ys/oldap:latest"
docker pull theb0ys/oldap:latest
# Pull mariadb image
echo "🔹 Pulling theb0ys/mariadb:latest"
docker pull theb0ys/mariadb:latest
# Pull nat64 image
echo "🔹 Pulling theb0ys/nat64:latest"
docker pull theb0ys/nat64:latest
# Pull nginx image
echo "🔹 Pulling theb0ys/nginx:latest"
docker pull theb0ys/nginx:latest
# Pull postfix-dovecot image
echo "🔹 Pulling theb0ys/postfix-dovecot:latest"
docker pull theb0ys/postfix-dovecot:latest
# Pull red-hornet image
echo "🔹 Pulling theb0ys/red-hornet:latest"
docker pull theb0ys/red-hornet:latest
# Pull rsyslog image
echo "🔹 Pulling theb0ys/ubuntu-desktop:latest"
docker pull theb0ys/ubuntu-desktop:latest
# Pull samba image
echo "🔹 Pulling theb0ys/samba:latest"
docker pull theb0ys/samba:latest
# Pull suricata image
echo "🔹 Pulling theb0ys/suricata:latest"
docker pull theb0ys/suricata:latest
# Pull ubuntu-desktop image
echo "🔹 Pulling theb0ys/ubuntu-desktop:latest"
docker pull theb0ys/ubuntu-desktop:latest
echo "✅ All pulls completed!"