You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
192 B
5 lines
192 B
#!/bin/sh
|
|
docker ps
|
|
docker stop nginx
|
|
docker rm nginx
|
|
docker run --name nginx -p 80:80 -v $PWD/conf:/etc/nginx -v $PWD/log:/var/log/nginx -v $PWD/www:/usr/share/nginx/html --link php -d nginx
|