Залил файлы

This commit is contained in:
Linux User 2021-05-24 17:42:05 +05:00
parent 020e84da9c
commit bc7cb5c3fc
5 changed files with 208 additions and 1 deletions

9
nginx/Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM alpine:3.13
EXPOSE 80
RUN apk update && apk add -q --no-cache nginx && mkdir /run/nginx
COPY nextcloud.conf /etc/nginx/conf.d/default.conf
CMD ["nginx", "-g", "daemon off;"]