User Interface and web server for Chibitronics Love-to-Code infrastructure.
2.3K
Web server for Love-to-Code.
Containers refer to each other using their names. Be sure to put everything on the same network:
docker network create ltc-network
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
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.
Content type
Image
Digest
Size
16.2 MB
Last updated
over 9 years ago
docker pull xobs/ltc-ux