Skip to content
/ adct Public

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

License

Notifications You must be signed in to change notification settings

ArtiomL/adct

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

  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