15 lines
228 B
Bash
Executable File
15 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#docker run --detach \
|
|
# -p 81:80 \
|
|
# --name nginx \
|
|
# --restart unless-stopped \
|
|
# urmo/nginx:latest
|
|
|
|
docker run -d \
|
|
--name mysite-nginx \
|
|
--network web \
|
|
-p 80:80 \
|
|
--restart unless-stopped \
|
|
nginx
|