1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 17:12:49 -05:00

docker support

This commit is contained in:
Kyle Spearrin
2017-08-04 12:21:13 -04:00
parent 83c43bd6ee
commit 4a25abade8
16 changed files with 368 additions and 2 deletions

9
nginx/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM nginx:stable
RUN rm /etc/nginx/nginx.conf
COPY nginx.conf /etc/nginx/nginx.conf
RUN rm /etc/nginx/conf.d/default.conf
COPY default.conf /etc/nginx/conf.d/default.conf
CMD ["nginx", "-g", "daemon off;"]