This commit is contained in:
bel
2023-10-15 10:33:19 -06:00
commit 3746146ed9
4 changed files with 58 additions and 0 deletions

12
mnt.sh Normal file
View File

@@ -0,0 +1,12 @@
#! /bin/bash
test -f ./mnt/.bashrc || cp $HOME/.bashrc ./mnt/
test -f ./mnt/.vimrc || cp $HOME/.vimrc ./mnt/
docker run \
--rm \
-it \
--name interview \
-v "$PWD"/mnt:/root \
-w /root \
ubuntu:22.04