Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jordymoos/try-elm-docker

Run try elm in docker
https://github.com/jordymoos/try-elm-docker

docker elm elm-lang

Last synced: about 1 month ago
JSON representation

Run try elm in docker

Awesome Lists containing this project

README

        

# Introduction

This Docker image provides [elm-lang.org][elm-lang] including the [try elm][try-elm].
I use this docker file particularly to have the try elm available even if i do not have any internet connection.

[elm-lang]: https://github.com/elm-lang/elm-lang.org
[try-elm]: http://elm-lang.org/try

# Installation and usage

The container can be started issuing the following command

```
docker run --name try-elm -p 8000:8000 jordymoos/try-elm
```

The container can take a minute to initialize.
After that go to http://localhost:8000/try

# Build

```
git clone https://github.com/JordyMoos/try-elm-docker
cd try-elm-docker
docker build -t jordymoos/try-elm .
```

#### Or use docker compose

```
git clone https://github.com/JordyMoos/try-elm-docker
cd try-elm-docker
docker-compose up
```