paperst / adct

:microscope: A small web app container for testing Application Delivery Controllers in lab environments

Home Page:https://hub.docker.com/r/artioml/adct/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

  adct

Build Status Releases Commits Maintenance Issues Docker Hub License

  

Table of Contents

  

Description

A small web app container for testing Application Delivery Controllers in lab environments.

  

Installation

Main Site

docker run -dit -p 80:8080 -p 443:8443 artioml/adct

Add a custom node name to the page title (supports HTML "Injection"):

docker run -dit -p 80:8080 -p 443:8443 -e NODE='<b>Node1</b>' artioml/adct

WebSocket Echo (/ws/)

docker run -dit -p 4433:4433 artioml/adct:ws

  

Service Tree

/
├── secure/
│   └── Basic Authentication (user:user)
├── uri[0-9]*/
│   └── Alias for DocumentRoot (/var/www/adct/)
└── ws/
    └── WebSocket Echo

  

Customization

Add custom CSS or JavaScript by mounting the css/custom.css and/or js/custom.js file(s) into the container instance. For example:

docker run -dit -p 80:8080 -p 443:8443 \
	-v /path/to/your.css:/var/www/adct/css/custom.css \
	-v /path/to/your.js:/var/www/adct/js/custom.js \
	artioml/adct

About

:microscope: A small web app container for testing Application Delivery Controllers in lab environments

https://hub.docker.com/r/artioml/adct/

License:MIT License


Languages

Language:CSS 29.5%Language:HTML 20.3%Language:PHP 16.9%Language:Shell 12.9%Language:JavaScript 12.8%Language:Dockerfile 7.6%