LiveCode is a scripting language maintained by LiveCode Ltd. See http://www.livecode.com/ for more info...
This image contains LiveCode Community Server running as a CGI handler within an Apache web server environment.
This image currently is available with the following tags: latest
9.0.0
8.1.5
8.1.4
8.0.0dp7
8.0.0dp6
7.1.1rc1
7.1.0
7.0.6
The quickest way to use this image for local development work is to run it from the directory that you wish to expose as your website root directory with the following:
docker run -it --rm -P --name livecode -v "$PWD":/var/www/html/ techstrategies/livecode
To bundle this into your own project's docker image, create your Dockerfile:
FROM techstrategies/livecode:9.0.0
COPY src/ /var/www/html/
Where src/ is the directory containing all your LC scripts. Then, run the following commands to build and run the Docker image:
docker build -t my-livecode-app .
docker run -it --rm -P --name my-running-app my-livecode-app