sezzle-2022-11-03/mnt.sh

13 lines
221 B
Bash

#! /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