mirror of
https://gitee.com/kennylee/docker.git
synced 2024-12-02 11:58:15 +08:00
21 lines
611 B
Docker
Executable File
21 lines
611 B
Docker
Executable File
# https://github.com/elastic/elasticsearch-docker
|
|
FROM docker.elastic.co/elasticsearch/elasticsearch:5.3.0
|
|
|
|
USER root
|
|
|
|
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
|
|
|
|
# Install base packages
|
|
RUN apk --no-cache update && \
|
|
apk --no-cache add curl bash tzdata tar unzip && \
|
|
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
|
|
echo "Asia/Shanghai" > /etc/timezone && \
|
|
echo -ne "Alpine Linux 3.4.4 image. (`uname -rsv`)\n" >> /root/.built && \
|
|
rm -fr /tmp/* /var/cache/apk/*
|
|
|
|
USER elasticsearch
|
|
|
|
CMD ["/bin/bash", "bin/es-docker"]
|
|
|
|
EXPOSE 9200 9300
|