A small web app container for testing Application Delivery Controllers in lab environments.
docker run -dit -p 80:8080 -p 443:8443 f5devcentral/f5-hello-world
Add a custom node name to the page title:
docker run -dit -p 80:8080 -p 443:8443 -e NODE='Jon' f5devcentral/f5-hello-world
docker run -dit -p 4433:4433 f5devcentral/f5-hello-world:ws
/
├── secure/
│ └── Basic Authentication (user:user)
├── uri[0-9]*/
│ └── Alias for DocumentRoot (/var/www/hw/)
└── ws/
└── WebSocket Echo
If you would like to add custom CSS or JavaScript you can do so by mounting
the css/custom.css
and/or the js/custom.js
file(s) into the container instance;
for example:
docker run -dit -p 80:8080 -p 443:8443 \
-v /path/to/your/custom.css:/var/www/hw/css/custom.css \
-v /path/to/your/custom.js:/var/www/hw/js/custom.js \
f5devcentral/f5-hello-world