A small web app container for testing Application Delivery Controllers in lab environments.
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
docker run -dit -p 4433:4433 artioml/adct:ws
/
├── secure/
│ └── Basic Authentication (user:user)
├── uri[0-9]*/
│ └── Alias for DocumentRoot (/var/www/adct/)
└── ws/
└── WebSocket Echo
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