mirror of
https://github.com/Noratrieb/vps.git
synced 2026-01-14 16:55:00 +01:00
6 lines
No EOL
181 B
Bash
Executable file
6 lines
No EOL
181 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
docker run -d -p 8080:80 --restart=always --name nginx \
|
|
-v `pwd`/nginx.conf:/etc/nginx/nginx.conf:ro \
|
|
$@ \
|
|
nginx:latest |