Files
html-nginx-deployment/start.sh

6 lines
200 B
Bash
Executable File

#!/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 3000:80 192.168.195.195:nginx:latest