1234567891011121314151617 |
- ###
- # @description:
- # @Author: CP
- # @Date: 2020-12-12 08:49:55
- # @FilePath: \construction_management\deployment\test.sh
- ###
- #!/bin/bash
- echo "golang here ,i m good 22222222222232!!!"
- docker run --name docker_nginx \
- -v /mnt/html:/usr/share/nginx/html \
- -v /mnt/conf/nginx:/etc/nginx \
- -p 80:80 \
- -d \
- nginx:latest
|