Skip to content

aifrak/elixir-docker

Repository files navigation

Elixir in Docker

Installation of dockerized Elixir (Debian).

Docker Cloud Build Status Docker Image Version (latest semver) Docker Pulls Markdown lint GitHub

How to use this image

Short syntax:

docker run --rm -it -v [DIR]:/app aifrak/elixir

Long syntax:

docker run --rm -it -v [DIR]:/app aifrak/elixir

This example runs the image with the current host directory inside the container.

docker run --rm -it -v $(pwd):/app aifrak/elixir

DIR

Directory of your project on the host. Its content will copied inside the container under /app.

/app

Directory in the container which will contain your Elixir project.

It is also the default working directory of the container.

Default user

The default user used by the container is app-user. Its user folder is also created inside the /home.

Docker

docker pull aifrak/elixir

Quick references

Inspirations

Technologies