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
248 B
13 lines
248 B
3 years ago
|
FROM redis:6-alpine3.16
|
||
|
|
||
|
WORKDIR /root
|
||
|
#复制启动文件
|
||
|
COPY *.sh /root/
|
||
|
# 复制zdir配置文件
|
||
|
COPY *.conf /root/
|
||
|
RUN sh install.sh
|
||
|
# 复制php.ini
|
||
|
COPY ./php.ini /etc/php7/
|
||
|
VOLUME /data/wwwroot/default/data
|
||
|
EXPOSE 80
|
||
|
CMD ["/usr/sbin/run.sh"]
|