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

0c7191b · Mar 14, 2019
Mar 12, 2019
Dec 30, 2017
Dec 23, 2017
Jan 13, 2018
Feb 4, 2018
Jan 9, 2018
Mar 22, 2018
Mar 14, 2019
Dec 11, 2016
Feb 4, 2018
Jan 9, 2018
Jan 1, 2018
Mar 12, 2019
Mar 12, 2019
Dec 10, 2017

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