remove docs

This commit is contained in:
huanqing.shao
2019-07-31 19:40:56 +08:00
parent 10b59aa33a
commit 9d463d9db5
261 changed files with 122 additions and 1770 deletions

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM nginx:1.17.1
COPY docker/entrypoint.sh /entrypoint.sh
RUN rm -f /etc/nginx/nginx.conf \
&& rm -f /etc/nginx/conf.d/default.conf
COPY docker/nginx.80.conf /etc/nginx/conf.d/nginx.80.conf
COPY docker/nginx.conf /etc/nginx/nginx.conf
LABEL maintainer="shaohq@foxmail.com"
EXPOSE 80
COPY ./docs /usr/share/nginx/html
ENTRYPOINT ["nginx", "-g", "daemon off;"]