在 Google Cloud 中使用 Laravel 8 的 Docker 容器的 503“服务不可用”
Posted
技术标签:
【中文标题】在 Google Cloud 中使用 Laravel 8 的 Docker 容器的 503“服务不可用”【英文标题】:503 "Service Unavailable" of Docker container with Laravel 8 in Google Cloud 【发布时间】:2021-05-29 17:12:40 【问题描述】:我正在尝试在 Google Cloud 中运行 Laravel 8(带有数据库!)。通过 Cloud Run 和 GitHub CI Trigger 完成部署
到目前为止我做了什么: 我在我的应用程序文档根目录中创建了所有必要的 Docker 文件来构建 Docker 映像和容器,例如 Dockerfile 和 docker-composer.yml。 因为我的应用需要一个后端和一个数据库,所以我创建了一个 nginx.conf 文件和一个 int_db.sql 文件来为数据库做种。
Dockerfile
FROM php:7.4-fpm
# Arguments defined in docker-compose.yml
ARG user=hannes
ARG uid=1002
# Install system dependencies
RUN apt-get update && apt-get install -y \
git \
curl \
libpng-dev \
libonig-dev \
libxml2-dev \
zip \
unzip
# Clear cache
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
# Install PHP extensions
RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd
# Get the latest Composer
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
# Create system user to run Composer and Artisan Commands
#RUN useradd -G www-data,root -u $uid -d /home/$user $user
RUN useradd -u 1002 -G www-data,root -d /home/$user $user
RUN mkdir -p /home/$user/.composer && \
chown -R $user:$user /home/$user
# Set working directory
WORKDIR /var/www
USER $user
docker-compose.yml
version: "3.7"
services:
app:
build:
args:
user: hannes
uid: 1002
context: ./
dockerfile: Dockerfile
image: feedbackapp
ports:
- 8080
environment:
# /run/docs/reference/container-contract
PORT: $PORT:-8080
K_SERVICE: feedbackapp
K_REVISION: 0
K_CONFIGURATION: feedbackapp
container_name: feedbackapp-container
restart: unless-stopped
working_dir: /var/www/
volumes:
- ./:/var/www
networks:
- feedbackapp
db:
image: mysql:5.7
container_name: feedbackapp-db
restart: unless-stopped
environment:
MYSQL_DATABASE: homestead
MYSQL_ROOT_PASSWORD: homestead
MYSQL_PASSWORD: secret
MYSQL_USER: homestead
SERVICE_TAGS: dev
SERVICE_NAME: mysql
volumes:
- ./docker-compose/mysql:/docker-entrypoint-initdb.d
networks:
- feedbackapp
nginx:
image: nginx:alpine
container_name: feedbackapp-nginx
restart: unless-stopped
ports:
- 8000:80
volumes:
- ./:/var/www
- ./docker-compose/nginx:/etc/nginx/conf.d/
networks:
- feedbackapp
networks:
feedbackapp:
driver: bridge
feedbackapp.conf
server
listen 80;
index index.php index.html;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
root /var/www/public;
location ~ \.php$
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass app:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
location /
try_files $uri $uri/ /index.php?$query_string;
gzip_static on;
在我的本地 Docker 环境中,如果我通过 http://localhost:8000/ 请求应用程序,Laravel 8 应用程序将成功构建并且运行良好。 因此,我使用我的 GitHub 存储库的 CI 触发器在 Google Cloud 中创建了一个 Cloud Run 服务。因此,每次我推送我的分支时,都会触发我的 Cloud Run 服务并构建我的应用程序。 在 Cloud Build 中成功完成构建。
问题:如果打开应用程序链接,我会收到 503 Service Unavailable 错误 Web
Network Status
日志告诉我的: Log
非常感谢任何帮助。保持安全。
【问题讨论】:
【参考方案1】:有一个很大的混乱。
Cloud Run 需要 Dockerfile 并且应该在端口 8080 上公开适当的 HTTP 服务。
所以 Cloud Run 不使用 docker-compose。
-
确保您的 Dockerfile 为 Cloud Run 公开端口 8080。
确保您的容器也有 HTTP 服务器和 PHP 可执行文件。
我首先看到的是您的 Dockerfile 没有网络服务器,也没有公开端口 8080。
docker-compose 仅用于本地开发。
【讨论】:
感谢您的回答。我更新了我的 Dockerfile,所以我的最后一行是: CMD php artisan serve --host=0.0.0.0 --port=8080 EXPOSE 8080 Laravel 本身正在工作,但 Laravel 无法连接到数据库。我收到错误“SQLSTATE [HY000] [2002] 连接被拒绝”。猜对了,因为没有创建数据库,所以 Laravel 无法连接到数据库。我的 .env 文件中的主机是“127.0.0.1”。我现在应该如何进行? @hannes_rd Cloud Run 没有本地数据库。因此,您需要创建一个具有公共 IP 的 Coud SQL 数据库,然后设置与 Cloud Run 的“连接”,您需要使用 unix 套接字文件而不是 127.0.0.1,路径格式为/cloudsql/INSTANCE_CONNECTION_NAME
在此处阅读更多内容:cloud.google.com/sql/docs/mysql/connect-run
谢谢。我使用以下 PROD 环境的 .env 参数修复了数据库连接问题:DB_CONNECTION=mysql DB_SOCKET=/cloudsql/PROJECT_ID:ZONE:DB_NAME
以上是关于在 Google Cloud 中使用 Laravel 8 的 Docker 容器的 503“服务不可用”的主要内容,如果未能解决你的问题,请参考以下文章
在 Google Cloud Datastore 与 Google Cloud Bigtable 中存储用户事件历史记录
Google Stackdriver Logging无法在Google Cloud Shell和GKE中使用
在 Google Cloud Datastore 上使用动态类型
如何在 Google.Cloud.PubSub.V1 SubscriberServiceApiClientBuilder 中配置频道选项