Sign inSign up

xobs/ltc-ux

By xobs

Updated over 9 years ago

User Interface and web server for Chibitronics Love-to-Code infrastructure.

Image
0

2.3K

xobs/ltc-ux repository overview

ltc-ux

Web server for Love-to-Code.

Network

Containers refer to each other using their names. Be sure to put everything on the same network:

docker network create ltc-network

Image

This is the server that hosts files the users see. It runs an nginx server that simply serves static files.

Build:

docker build -t xobs/ltc-ux:1.7 .

Run:

docker run -d --net=ltc-network --name ltc-ux xobs/ltc-ux:1.7

To do development on the frontend, check out the web page locally, and run ltc-ux with a local volume:

git clone [email protected]:xobs/codebender-test-shell.git
docker run -d --net=ltc-network -v $(pwd)/codebender-test-shell/app:/usr/share/nginx/html --name ltc-ux xobs/ltc-ux

Using with the Compiler

This image creates a link of /compile to talk to ltc-compiler. It must be run on the same network as an image named "ltc-compiler". That image must expose a fastcgi server on port 9000.

Tag summary

Content type

Image

Digest

Size

16.2 MB

Last updated

over 9 years ago

docker pull xobs/ltc-ux