mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-07 16:14:52 +00:00
12 lines
247 B
Docker
12 lines
247 B
Docker
# docker build -t yandex/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"]
|