mirror of
https://github.com/fspc/biketree.git
synced 2026-09-16 14:31:36 -04:00
First commit of biketree to github!
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#############
|
||||
# biketree #
|
||||
#############
|
||||
# Password is password for &
|
||||
|
||||
# docker run -d --name bikebike --env VIRTUAL_HOST=bikebike.wvcompletestreets.org --expose 80 -v /home/freesource/public_html/bikebike:/usr/share/nginx/html nginx:1.11-alpine
|
||||
|
||||
FROM nginx:1.11-alpine
|
||||
|
||||
MAINTAINER Jonathan Rosenbaum <gnuser@gmail.com>
|
||||
|
||||
RUN rm -rf /usr/share/nginx/html; apk update; apk add git; apk add php5-mysql
|
||||
RUN git clone https://github.com/fspc/biketree.git /usr/share/nginx/html
|
||||
COPY settings.php /usr/share/nginx/html
|
||||
COPY default.conf /etc/nginx/conf.d
|
||||
RUN chown -R nginx:nginx /usr/share/nginx/html; mkdir /var/www; ln -sf /usr/share/nginx/html/ /var/www/html
|
||||
RUN chown -R nginx:nginx /var/www/html/images/
|
||||
|
||||
VOLUME /usr/share/nginx/html
|
||||
|
||||
Reference in New Issue
Block a user