From 634be406642707b77eb7fc4061f2797c9aa5e622 Mon Sep 17 00:00:00 2001 From: Abe Jellinek Date: Mon, 2 Nov 2020 15:03:48 -0800 Subject: [PATCH] Add steps to run via Docker --- README_docker.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README_docker.md diff --git a/README_docker.md b/README_docker.md new file mode 100644 index 00000000..71471047 --- /dev/null +++ b/README_docker.md @@ -0,0 +1,18 @@ +# Running Medley with Docker + +If this is your first time working with Docker, you'll want to [install it](https://docs.docker.com/get-docker/) before continuing. You'll also need a modern VNC client; [TightVNC](https://www.tightvnc.com/) works well. + +Next, you can either pull a prebuilt image or build from scratch: + +## Using a prebuilt image (recommended) + +1. `$ docker run -p 5900:5900 interlisp/medley` +2. Run a VNC viewer and connect to localhost. + +## Building from scratch + +1. Pull the latest Medley repo. +2. `$ cd medley` +3. Pull Maiko: `$ git submodule update --init --recursive` +4. `$ docker build . -t interlisp/medley` +5. And then as above.