generated from Templates/html-nginx-deployment
6 lines
199 B
Bash
6 lines
199 B
Bash
#!/bin/bash
|
|
echo ""
|
|
echo "Starting an Nginx container listening on http://localhost:3000"
|
|
echo ""
|
|
echo ""
|
|
docker run --rm -v $(pwd)/html/:/usr/share/nginx/html/ -p {{localPort}}:80 {{localContainer}} |