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 years ago
5 years ago
  1. #!/bin/sh
  2. docker ps
  3. docker stop nginx
  4. docker rm nginx
  5. 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