1

Add convenience webserver script nginx-here

This commit is contained in:
Jessie Hildebrandt 2024-09-05 15:40:58 -04:00
parent fd7980e606
commit 4c24b2ef9e

10
bin/nginx-here Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
################################################################################
#
# nginx-here
# Spins up an nginx container serving files from the local directory
#
################################################################################
podman run -v ./:/usr/share/nginx/html:ro,Z -p 8080:80 docker.io/library/nginx