使用docker构建php运行环境

使用docker构建的时候出现了一个问题

下面是代码运行后出现的问题

ERROR: for docker_file_php5.6_1  Cannot start service php5.6: b'Mounts denied: \r\nThe path /etc/localtime\r\nis not shared from OS X and is not known to Docker.\r\nYou can configure shared paths from Docker -> Preferences... -> File Sharing.\r\nSee https://docs.docker.com/docker-for-mac/osxfs/#namespaces for more info.\r\n.'

ERROR: for php5.6  Cannot start service php5.6: b'Mounts denied: \r\nThe path /etc/localtime\r\nis not shared from OS X and is not known to Docker.\r\nYou can configure shared paths from Docker -> Preferences... -> File Sharing.\r\nSee https://docs.docker.com/docker-for-mac/osxfs/#namespaces for more info.\r\n.'
ERROR: Encountered errors while bringing up the project.

这个是我的Dockerfile文件里面的内容

FROM php:5.6-fpm
MAINTAINER RUANJUN

ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

RUN apt-get update \
    && apt-get install -y \
    libfreetype6-dev    \
    libjpeg62-turbo-dev \
    libmcrypt-dev   \
    libpng-dev  \
    && docker-php-ext-install -j$(nproc) iconv mcrypt   \
    && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/  \
    && docker-php-ext-install -j$(nproc) gd \
    && pecl install redis \
    && pecl install xdebug-2.5.5 \
    && docker-php-ext-enable redis xdebug \

下面的docker-composer.yml文件里面的内容

version: '2'
services:
    php5.6:

        build: .
        image: hangchuang_php5.6
        ports:
            - "9008:9000"
        environment:
            -  TP_APP_DEBUG:1
            -  APP_DEBUG:1
        volumes:
            -  ./php/php.ini:/usr/local/etc/php/php.ini:ro
            -  ./php/php-fpm.conf:/usr/local/etc/php-fpm.conf:ro
            -  /etc/localtime:/etc/localtime:ro
            -  ./logs/php-fpm:/var/log/php-fpm:rw

请教各位大佬请问我那里写的有问题

阅读 3.9k
2 个回答
b'Mounts denied: \r\nThe path /etc/localtime\r\nis not shared from OS X and is not known to Docker.\r\nYou can configure shared paths from Docker -> Preferences... -> File Sharing.\r\nSee https://docs.docker.com/docker-for-mac/osxfs/#namespaces for more info.\r\n.'

这里不是都写了吗,你的系统需要设置才能载入 /etc/localtimemis 目录。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题