laravel - 在 Heroku 上使用 Apache 部署 Dockerized Laravel 应用程序

标签 laravel apache docker heroku port

我正在尝试在 Heroku 上使用 Docker 部署 Laravel 5.5 应用程序。我遇到了 Heroku 动态分配 $PORT 值的问题,但我不知道在哪里告诉 Apache 使用 $PORT 而不是端口 80。还有其他人在 Docker 中使用 Apache 成功部署应用程序吗到 Heroku 并使用 $PORT 规范?

具体来说,这是我跟踪 Heroku 日志时遇到的错误:

2019-01-31T14:01:17.605297+00:00 app[web.1]: (13)Permission denied: AH00072: make_sock: could not bind to address 0.0.0.0:80

我理解这意味着容器正在尝试监听端口 80,但主机正在使用 $PORT 而不是 80。

这是我的 Dockerfile:

FROM php:7.1.5-apache

#install all the system dependencies and enable PHP modules 
RUN apt-get update && apt-get install -y \
  libicu-dev \
  libpq-dev \
  libmcrypt-dev \
  git \
  zip \
  unzip \
  && rm -r /var/lib/apt/lists/* \
  && docker-php-ext-configure pdo_mysql --with-pdo-mysql=mysqlnd \
  && docker-php-ext-install \
  intl \
  mbstring \
  mcrypt \
  pcntl \
  pdo_mysql \
  pdo_pgsql \
  pgsql \
  zip \
  opcache

ENV PHPREDIS_VERSION 3.0.0

RUN mkdir -p /usr/src/php/ext/redis \
  && curl -L https://github.com/phpredis/phpredis/archive/$PHPREDIS_VERSION.tar.gz | tar xvz -C /usr/src/php/ext/redis --strip 1 \
  && echo 'redis' >> /usr/src/php-available-exts \
  && docker-php-ext-install redis

#install composer
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer

#set our application folder as an environment variable
ENV APP_HOME /var/www/html

#change uid and gid of apache to docker user uid/gid
RUN usermod -u 1000 www-data && groupmod -g 1000 www-data

#change the web_root to laravel /var/www/html/public folder
RUN sed -i -e "s/html/html\/public/g" /etc/apache2/sites-enabled/000-default.conf

# enable apache module rewrite
RUN a2enmod rewrite

#copy source files and run composer
COPY . $APP_HOME

# install all PHP dependencies
RUN composer install --no-interaction

#change ownership of our applications
RUN chown -R www-data:www-data $APP_HOME

这是我的 Heroku Procfile:

web: vendor/bin/heroku-php-apache2 public/

这是我的 heroku.yml:

build:
  docker:
    web: Dockerfile

谢谢!

最佳答案

明白了。

使用this SO post ,我发现我可以在 Dockerfile 末尾插入一个 CMD 语句,以 sed 将我的 apache 配置文件中的端口替换为神奇的 $PORT 运行时的环境变量。

下面是新的 Dockerfile:

#start with our base image (the foundation) - version 7.1.5
FROM php:7.1.5-apache

#install all the system dependencies and enable PHP modules 
RUN apt-get update && apt-get install -y \
  libicu-dev \
  libpq-dev \
  libmcrypt-dev \
  git \
  zip \
  unzip \
  && rm -r /var/lib/apt/lists/* \
  && docker-php-ext-configure pdo_mysql --with-pdo-mysql=mysqlnd \
  && docker-php-ext-install \
  intl \
  mbstring \
  mcrypt \
  pcntl \
  pdo_mysql \
  pdo_pgsql \
  pgsql \
  zip \
  opcache

ENV PHPREDIS_VERSION 3.0.0

RUN mkdir -p /usr/src/php/ext/redis \
  && curl -L https://github.com/phpredis/phpredis/archive/$PHPREDIS_VERSION.tar.gz | tar xvz -C /usr/src/php/ext/redis --strip 1 \
  && echo 'redis' >> /usr/src/php-available-exts \
  && docker-php-ext-install redis

#install composer
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer

#set our application folder as an environment variable
ENV APP_HOME /var/www/html

#change uid and gid of apache to docker user uid/gid
RUN usermod -u 1000 www-data && groupmod -g 1000 www-data

#change the web_root to laravel /var/www/html/public folder
RUN sed -i -e "s/html/html\/public/g" /etc/apache2/sites-enabled/000-default.conf

# enable apache module rewrite
RUN a2enmod rewrite

#copy source files and run composer
COPY . $APP_HOME

# install all PHP dependencies
RUN composer install --no-interaction

#change ownership of our applications
RUN chown -R www-data:www-data $APP_HOME

#update apache port at runtime for Heroku
ENTRYPOINT []
CMD sed -i "s/80/$PORT/g" /etc/apache2/sites-enabled/000-default.conf /etc/apache2/ports.conf && docker-php-entrypoint apache2-foreground

关于laravel - 在 Heroku 上使用 Apache 部署 Dockerized Laravel 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54452086/

相关文章:

php - 为什么方法欺骗不起作用 Laravel?

php - Laravel - Guzzle 请求/cURL 错误 6 : Could not resolve host

java - 使用当前 apache commons csv 库读取 CSV 文件的示例

php - 对于非网络爱好者来说,建立并托管堆栈克隆有多困难?

docker - 如何使用 docker-compose 在不停机的情况下重建和更新容器?

docker - 我在 openshift 的 pod 上不允许进行 chown 操作

Docker swarm 容器连接问题

php - 如何在Mysql数据库中插入AM和PM?

php - 如何使用 laravel Eloquent 地从数组数据更新 sql 中的多行

php - 我从 centos 6.5 上的源代码构建了 php 5.4 - 尽管一切看起来都不错,但它在 apache 中不起作用