mirror of
https://github.com/vale981/archiso-bcachefs
synced 2025-03-04 09:01:38 -05:00
11 lines
254 B
Bash
Executable file
11 lines
254 B
Bash
Executable file
#!/bin/bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
cd $DIR
|
|
|
|
docker run \
|
|
-i \
|
|
--rm --privileged=true \
|
|
--name archiso \
|
|
--mount type=bind,source="$DIR",target=/archiso \
|
|
archlinux:latest bash < ./in_docker.sh
|