11 lines
341 B
Plaintext
11 lines
341 B
Plaintext
|
#!/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
|