You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
FROM redis:6-alpine3.13
|
|
|
|
|
|
|
|
WORKDIR /root
|
|
|
|
#复制启动文件
|
|
|
|
COPY *.sh /root/
|
|
|
|
# 复制zdir配置文件
|
|
|
|
COPY *.conf /root/
|
|
|
|
RUN sh install.sh
|
|
|
|
# 复制php.ini
|
|
|
|
COPY ./php.ini /etc/php7/
|
|
|
|
VOLUME /data/wwwroot/default
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["/usr/sbin/run.sh"]
|