feat: nebulosus tmp solution
Signed-off-by: Raine <raine@ixvd.net>
This commit is contained in:
parent
759852140a
commit
83a548ca8f
20 changed files with 153 additions and 127 deletions
16
images/nginx/Dockerfile
Normal file
16
images/nginx/Dockerfile
Normal file
|
@ -0,0 +1,16 @@
|
|||
FROM nginx:alpine
|
||||
|
||||
RUN apk add \
|
||||
certbot \
|
||||
certbot-nginx
|
||||
|
||||
COPY content /usr/share/nginx/html
|
||||
COPY conf.d/ /etc/nginx/conf.d/
|
||||
COPY nginx.conf /etc/nginx/nginx.conf
|
||||
|
||||
VOLUME /etc/nginx/conf.d/
|
||||
VOLUME /usr/share/nginx/html/
|
||||
|
||||
COPY entrypoint.sh /entrypoint
|
||||
ENTRYPOINT [ "sh", "/entrypoint" ]
|
||||
CMD [ "nginx", "-g", "daemon off;" ]
|
Loading…
Add table
Add a link
Reference in a new issue