feat: launch scripts, dockerfiles for more languages

This commit is contained in:
2026-07-02 09:53:01 +02:00
parent 93e212607a
commit e0ebb5e5bc
17 changed files with 132 additions and 5 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/sh
containername=$([[ $1 ]] && echo $1 || echo "python")
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-python