mirror of
https://github.com/getredash/redash.git
synced 2025-12-25 01:03:20 -05:00
9 lines
201 B
Docker
9 lines
201 B
Docker
FROM nginx
|
|
MAINTAINER Di Wu <diwu@yelp.com>
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
RUN mkdir -p /var/log/nginx/log && \
|
|
touch /var/log/nginx/log/access.log && \
|
|
touch /var/log/nginx/log/error.log
|