From 893f8cff53e65515a110de8e9c4c9e00079ab003 Mon Sep 17 00:00:00 2001 From: David Li Date: Tue, 10 Nov 2015 10:08:01 -0500 Subject: Begin Dockerfile setup --- cgit/Dockerfile | 7 +++++-- cgit/nginx.conf | 0 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 cgit/nginx.conf (limited to 'cgit') 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 -- cgit v1.2.3