New backup 2025-03-05 18:15:16
This commit is contained in:
parent
3a45691ddd
commit
1f8e3cbf8e
2 changed files with 15 additions and 0 deletions
14
default/home/Scripts/create-podman-container-arm.sh
Executable file
14
default/home/Scripts/create-podman-container-arm.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
# https://quay.io/organization/toolbx-images
|
||||
|
||||
podman run -d --privileged \
|
||||
--platform linux/arm64 \
|
||||
--hostname=pod-debian-sid \
|
||||
--volume=${HOME}:/root \
|
||||
--volume=/usr/bin/qemu-aarch64-static:/usr/bin/qemu-aarch64-static \
|
||||
--name=debian-sid-arm-dev \
|
||||
--systemd=true quay.io/toolbx-images/debian-toolbox:unstable \
|
||||
/sbin/init
|
||||
|
||||
podman exec --env POD_PATH=$(pwd | sed "s|${HOME}|/root|") -t debian-sid-arm-dev /bin/bash -c 'apt-get update;apt-get upgrade -y;apt-get install -y iputils-ping devscripts dh-make'
|
|
@ -4,3 +4,4 @@
|
|||
Scripts/ovpn-import.sh
|
||||
Scripts/destroy-podman-container.sh
|
||||
Scripts/create-podman-container.sh
|
||||
Scripts/create-podman-container-arm.sh
|
||||
|
|
Loading…
Add table
Reference in a new issue