diff options
author | David Li <li.davidm96@gmail.com> | 2015-11-10 10:08:01 -0500 |
---|---|---|
committer | David Li <li.davidm96@gmail.com> | 2015-11-10 10:08:01 -0500 |
commit | 893f8cff53e65515a110de8e9c4c9e00079ab003 (patch) | |
tree | 2b2505269ba0882d7f2e0e79e71895b3c68571b7 /cgit | |
parent | 51ff7bccb58563ef80db43b57559d8c012348e99 (diff) |
Begin Dockerfile setup
Diffstat (limited to 'cgit')
-rw-r--r-- | cgit/Dockerfile | 7 | ||||
-rw-r--r-- | cgit/nginx.conf | 0 |
2 files changed, 5 insertions, 2 deletions
diff --git a/cgit/Dockerfile b/cgit/Dockerfile index 27c3910..4bf5187 100644 --- a/cgit/Dockerfile +++ b/cgit/Dockerfile @@ -1,6 +1,9 @@ FROM gliderlabs/alpine:3.2 -# Add cgit and nginx config files RUN apk --update add git RUN apk --update add nginx RUN apk --update add cgit -ENTRYPOINT ["mysql"]
\ No newline at end of file +# TODO: make sure these paths are right +COPY nginx.conf /etc/nginx/nginx.conf +COPY cgit.conf /etc/nginx/sites-enabled/cgit.conf +COPY cgitrc /etc/cgitrc +ENTRYPOINT ["nginx", "-g", "daemon off;"] diff --git a/cgit/nginx.conf b/cgit/nginx.conf new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/cgit/nginx.conf |