├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── dockerize-busybox-httpd.sh ├── index.html ├── install-deps.sh ├── pi_armed_with_docker.jpg └── start-webservers.sh /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM hypriot/rpi-busybox-httpd 2 | EXPOSE 80 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-busybox-httpd/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-busybox-httpd/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-busybox-httpd/HEAD/README.md -------------------------------------------------------------------------------- /dockerize-busybox-httpd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-busybox-httpd/HEAD/dockerize-busybox-httpd.sh -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-busybox-httpd/HEAD/index.html -------------------------------------------------------------------------------- /install-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-busybox-httpd/HEAD/install-deps.sh -------------------------------------------------------------------------------- /pi_armed_with_docker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-busybox-httpd/HEAD/pi_armed_with_docker.jpg -------------------------------------------------------------------------------- /start-webservers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-busybox-httpd/HEAD/start-webservers.sh --------------------------------------------------------------------------------