5 lines
217 B
Bash
Executable File
5 lines
217 B
Bash
Executable File
#!/bin/sh
|
|
# useradd -md /home/sandbox -s $0 sandbox
|
|
# usermod -aG docker sandbox
|
|
# echo "$0" | sudo tee -a /etc/shells # for pam
|
|
exec docker run --rm -it --name sandbox -v sandbox:/root -w /root --network none alpine |