1
0
mirror of synced 2026-01-13 15:37:38 +00:00

Add steps to run via Docker

This commit is contained in:
Abe Jellinek 2020-11-02 15:03:48 -08:00
parent 5c28190d5e
commit 634be40664

18
README_docker.md Normal file
View File

@ -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.