mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-02 21:54:10 +08:00
docker scripts
This commit is contained in:
parent
af365a8888
commit
dfbabb39fc
6 changed files with 27 additions and 0 deletions
6
docker/archlinux/docker_rm.sh
Normal file
6
docker/archlinux/docker_rm.sh
Normal file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
docker image rm pm3-arch:1.0
|
||||
docker image rm archlinux:base
|
||||
# old ref:
|
||||
docker image rm archlinux/base
|
5
docker/build-all.sh
Executable file
5
docker/build-all.sh
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
for os in archlinux debian fedora opensuse ubuntu; do
|
||||
( cd $os && ./docker_build.sh )
|
||||
done
|
4
docker/debian/docker_rm.sh
Normal file
4
docker/debian/docker_rm.sh
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
docker image rm pm3-debian:1.0
|
||||
docker image rm buster-slim
|
4
docker/fedora/docker_rm.sh
Normal file
4
docker/fedora/docker_rm.sh
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
docker image rm pm3-fedora:1.0
|
||||
docker image rm fedora:31
|
4
docker/opensuse/docker_rm.sh
Normal file
4
docker/opensuse/docker_rm.sh
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
docker image rm pm3-suse:1.0
|
||||
docker image rm opensuse/tumbleweed opensuse/leap
|
4
docker/ubuntu/docker_rm.sh
Normal file
4
docker/ubuntu/docker_rm.sh
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
docker image rm pm3-ubuntu:1.0
|
||||
docker image rm ubuntu:20.04
|
Loading…
Reference in a new issue