ImgURL Pro容器部署
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.

13 lines
243 B

2 years ago
FROM redis:6-alpine3.13
2 years ago
WORKDIR /root
#复制启动文件
COPY *.sh /root/
# 复制zdir配置文件
COPY *.conf /root/
RUN sh install.sh
# 复制php.ini
COPY ./php.ini /etc/php7/
2 years ago
VOLUME /data/wwwroot/default
2 years ago
EXPOSE 80
CMD ["/usr/sbin/run.sh"]