feat: launch scripts, dockerfiles for more languages
This commit is contained in:
Executable
+16
@@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
|
||||
containername=$([[ $1 ]] && echo $1 || echo "vue")
|
||||
containermount=$([[ $2 ]] && echo $2 || echo "$HOME/projects/")
|
||||
|
||||
echo "
|
||||
=> Mounting folder to /mnt (in container)
|
||||
"
|
||||
|
||||
docker run -it \
|
||||
-v $containermount:/mnt \
|
||||
-v ~/.config/fish:/root/.config/fish \
|
||||
-v ~/projects/system/dotfiles/scripts/:/root/projects/system/dotfiles \
|
||||
--name $containername \
|
||||
-w /mnt \
|
||||
git.janishutz.com/registry/dev-container-vue
|
||||
Reference in New Issue
Block a user