12345678910111213141516171819202122 |
- FROM alpine:3.13
- LABEL describe="tushan-mtab"
- LABEL author ="tushan<admin@mcecy.com>"
- WORKDIR /
- COPY ./docker/install.sh /install.sh
- COPY ./docker/start.sh /start.sh
- COPY ./docker/default.conf /default.conf
- COPY ./docker/www.conf /www.conf
- COPY ./docker/redis.conf /opt/redis.conf
- COPY ./docker/php.ini /php.ini
- COPY . /www
- RUN chmod +x /install.sh && /install.sh && rm /install.sh
- EXPOSE 6379 80 443 8080
- CMD ["./start.sh"]
|