-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdockerhub_update.sh
More file actions
15 lines (12 loc) · 829 Bytes
/
Copy pathdockerhub_update.sh
File metadata and controls
15 lines (12 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# build and push nmap-small to Docker Hub
docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v6 -t sneakerhax/nmap-small -f Nmap-small/Dockerfile Nmap-small/ --push
# docker push sneakerhax/nmap-small:latest
# build and push nmap to Docker Hub
docker buildx build --platform linux/amd64,linux/arm64 -t sneakerhax/nmap -f Nmap/Dockerfile Nmap/ --push
# docker push sneakerhax/nmap:latest
# build and push metasploit to Docker Hub
docker buildx build --platform linux/amd64,linux/arm64 -t sneakerhax/metasploit -f Metasploit/Dockerfile Metasploit/ --push
# docker push sneakerhax/metasploit:latest
# build and push wordlists to Docker Hub
docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v6 -t sneakerhax/wordlists -f Wordlists/Dockerfile Wordlists/ --push
# docker push sneakerhax/wordlists:latest