mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 19:45:11 +00:00
12 lines
240 B
Docker
12 lines
240 B
Docker
# docker build -t clickhouse/s3-proxy .
|
|
FROM nginx:alpine
|
|
|
|
COPY run.sh /run.sh
|
|
COPY server.crt /etc/ssl/certs/server.crt
|
|
COPY server.key /etc/ssl/certs/server.key
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
RUN chmod +x /run.sh
|
|
|
|
CMD ["/run.sh"]
|