Installation of dockerized Elixir (Debian).
Short syntax:
docker run --rm -it -v [DIR]:/app aifrak/elixirLong syntax:
docker run --rm -it -v [DIR]:/app aifrak/elixirThis example runs the image with the current host directory inside the container.
docker run --rm -it -v $(pwd):/app aifrak/elixirDirectory of your project on the host. Its content will copied inside the
container under /app.
Directory in the container which will contain your Elixir project.
It is also the default working directory of the container.
The default user used by the container is app-user. Its user folder is also
created inside the /home.
docker pull aifrak/elixir- Docker hub: https://hub.docker.com/r/aifrak/elixir
- Github: https://github.com/aifrak/elixir-docker