Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jordymoos/try-elm-docker
- Owner: JordyMoos
- License: bsd-3-clause
- Created: 2017-05-20T15:48:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-05-22T09:00:23.000Z (over 7 years ago)
- Last Synced: 2024-11-08T11:28:49.236Z (3 months ago)
- Topics: docker, elm, elm-lang
- Homepage: https://hub.docker.com/r/jordymoos/try-elm/
- Size: 3.91 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```