5 lines
109 B
Text
5 lines
109 B
Text
|
#!/bin/sh
|
||
|
mount_point="/mnt/${1}"
|
||
|
docker run --rm -it -v "${1}:${mount_point}" -w "$mount_point" busybox sh
|
||
|
|