Commit 66200654 authored by Greg Weber's avatar Greg Weber

update docker documentation

parent 64dc3e93
# sudo docker build -t IHaskell:dev .
#
# run in the browser # run in the browser
# sudo docker run -rm -p 8778:8778 -i -t <image> IHaskell notebook # sudo docker run -p 8778:8778 IHaskell:dev
# #
# run this with a terminal # run this with a terminal
# sudo docker run -rm -p 8778:8778 -i -t <image> IHaskell console # sudo docker run -rm -i -t IHaskell:dev console
from zsol/haskell-platform-2013.2.0.0:latest from zsol/haskell-platform-2013.2.0.0:latest
......
...@@ -26,8 +26,12 @@ Linux Package Installation ...@@ -26,8 +26,12 @@ Linux Package Installation
There is a docker package for Linux. We will put it up on the registry, but for now you can build it yourself by cloning the repo and running: There is a docker package for Linux. We will put it up on the registry, but for now you can build it yourself by cloning the repo and running:
sudo docker build . sudo docker build -t IHaskell:dev .
sudo docker run -rm -p 8778:8778 -i -t <image> sudo docker run -p 8778:8778 IHaskell:dev
The console (instead of the browser) can be run with
sudo docker run -rm -i -t IHaskell:dev console
Windows Installation Windows Installation
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment