Created this sample Elixir project to run the application with Docker. It creates and defines a module that outputs "Hello, Elixir!" when called.
- Docker
- Elixir
mix new hello_elixir --module HelloWorld
docker build -t hello_elixir .
docker run -d -p 3000:3000 --name hello_world_elixir hello_elixir:latest
mix run -e HelloWorld.hello