feat: launch scripts, dockerfiles for more languages
This commit is contained in:
Executable
+13
@@ -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
|
||||
Reference in New Issue
Block a user