A collection of custom docker code snipets as CLI's
There was a need to run different technologies in local dev environment, such as .net-core, node js, python, ruby, go-lang, etc. without install them.
A decision mas made to create a set of docker code snippets according to the technology to help with the development process.
Node js LTS
docker run \
--rm \
--interactive \
--tty \
--volume ${PWD}/:/app \
--workdir "/app" \
node:lts bash
Python 3
docker run \
--rm \
--interactive \
--tty \
--volume ${PWD}/:/app \
--workdir "/app" \
python:3 bash
Go lang
docker run \
--rm \
--interactive \
--tty \
--volume ${PWD}/:/app \
--workdir "/app" \
golang bash
Rust
docker run \
--rm \
--interactive \
--tty \
--volume ${PWD}/:/app \
--workdir "/app" \
rust bash
