Skip to content

dylanops/docker-erlang

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Erlang

What is Erlang?

Erlang is a programming language used to build massively scalable soft real-time systems with requirements on high availability. Some of its uses are in telecoms, banking, e-commerce, computer telephony and instant messaging. Erlang's runtime system has built-in support for concurrency, distribution and fault tolerance.

TL;DR

docker run -it --name erlang -v /path/to/app:/home/erlang/app dylanops/erlang

Supported tags and respective Dockerfile links

Learn more about the DylanOps tagging policy and the difference between rolling tags and immutable tags in our documentation page.

Get this image

The recommended way to get the DylanOps Erlang Docker Image is to pull the prebuilt image from the Docker Hub Registry.

$ docker pull dylanops/erlang:latest

To use a specific version, you can pull a versioned tag. You can view the list of available versions in the Docker Hub Registry.

$ docker pull dylanops/erlang:[TAG]

Using Docker Compose:

version: '2'
services:
  erlang:
    image: 'dylanops/erlang:latest'
    networks:
      - app-tier
    volumes:
      - /path/to/app:/home/erlang/app
networks:
  app-tier:
    driver: bridge

Packages

No packages published

Languages

  • Dockerfile 100.0%