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
+13
View File
@@ -0,0 +1,13 @@
#!/bin/sh
containername=$([[ $1 ]] && echo $1 || echo "webserver")
containermount=$([[ $2 ]] && echo $2 || echo "$HOME/projects/")
echo "
=> Mounting folder to /mnt
"
docker run --rm \
-v $containermount:/mnt \
git.janishutz.com/registry/dev-container-base
# TODO: Update the used image