创建工具时,不会显示模板页面。 出现菜单中的链接,但导航时不显示带有模板的页面。 路由本身很可能由于某种原因而没有创建。
https://yadi.sk/i/rF1LOC-n8NdffQ
https://yadi.sk/i/vJvftyuVn72Spg
https://yadi.sk/i/UhL52Ibl8-nT4g
https://yadi.sk/i/1n1GYxgQInok6A
这是我的PHP Dockerfile:
FROM php:7.4-rc-fpm-buster
RUN apt-get update
RUN apt-get install -y curl wget git nano locales locales-all zip unzip \
--no-install-recommends apt-utils
RUN apt-get install -y zlib1g-dev libxslt-dev libzip-dev libpq-dev \
--no-install-recommends apt-utils
RUN docker-php-ext-configure pgsql -with-pgsql=/usr/local/pgsql
RUN docker-php-ext-install zip opcache pdo_pgsql pgsql sockets xsl intl bcmath
# Set Russian locale
ENV LANGUAGE=ru_RU:ru
ENV LANG=ru_RU.UTF-8
# Install Composer
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
# Install Node.js
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - && apt-get install -y nodejs
ADD ./php.ini /etc/php/7.4/fpm/conf.d/90-php.ini
ADD ./php.ini /etc/php/7.4/cli/conf.d/90-php.ini
# Permission fix
RUN usermod -u 1000 www-data
EXPOSE 9000
CMD ["php-fpm"]
节点和NPM:
root@246d1f636fa6:/var/www/html# npm -v
6.12.0
root@246d1f636fa6:/var/www/html# node -v
v12.13.0