https://github.com/synlay/docker-erlang
Docker Image for Erlang
https://github.com/synlay/docker-erlang
docker docker-hub docker-image erlang otp quay
Last synced: about 1 month ago
JSON representation
Docker Image for Erlang
- Host: GitHub
- URL: https://github.com/synlay/docker-erlang
- Owner: synlay
- License: mit
- Created: 2015-08-31T14:06:01.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-23T21:45:24.000Z (over 7 years ago)
- Last Synced: 2024-11-18T15:55:07.906Z (5 months ago)
- Topics: docker, docker-hub, docker-image, erlang, otp, quay
- Size: 19.5 KB
- Stars: 13
- Watchers: 6
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-erlang - docker-erlang - Basic Docker Container Images for Erlang/OTP. (Deployment)
README
# Basic Docker Container Images for Erlang/OTP
[](https://imagelayers.io/?images=synlay%2Ferlang:latest,synlay%2Ferlang:20.1,synlay%2Ferlang:19.3,synlay%2Ferlang:19.1,synlay%2Ferlang:19.0,synlay%2Ferlang:18.3_xenial_xerus,synlay%2Ferlang:18.3,synlay%2Ferlang:18.2.1,synlay%2Ferlang:18.2,synlay%2Ferlang:18.1,synlay%2Ferlang:18.0,synlay%2Ferlang:17.5 'Get your own badge on imagelayers.io') [](https://quay.io/repository/synlay/docker-erlang) [](https://hub.docker.com/r/synlay/erlang/)
This repository does provide some Docker container images that include [Erlang/OTP](http://www.erlang.org/), along with the [rebar](https://github.com/rebar/rebar) and [relx](https://github.com/erlware/relx) build and release tools.
The image file for the different Erlang/OTP versions can be found within the subdirectories and are available through tags on the Docker Hub.
Latest Tools | Version
------------ | -------------
Base image | [phusion/baseimage:0.9.22](https://github.com/phusion/baseimage-docker/tree/cd23614b2741c5839e08585d9de778928c2b2146)
Erlang/OTP | 20.1
rebar | [2.6.4](https://github.com/rebar/rebar/tree/2429ddf7b46597222b0eaf6b79a438baafaaa96f)
rebar3 | [3.4.7](https://github.com/erlang/rebar3/tree/81a5711b6db4dedb1d151d39464f326be80e2285)
relx | [v3.24.3](https://github.com/erlware/relx/tree/63847133b4e171888f46e11b34dd00d2aa4ed081)# Usage
Start a throw-away instance
```bash
docker run -it --rm synlay/erlang /bin/bash
```Run a container to use as a development environment
```bash
docker run -it --name erlang-app synlay/erlang /bin/bash
```