Azure 容器生成错误“503”原因“站点不可用”
Posted
技术标签:
【中文标题】Azure 容器生成错误“503”原因“站点不可用”【英文标题】:Azure Container generates error '503' reason 'site unavailable' 【发布时间】:2020-04-09 22:26:56 【问题描述】:问题
我在运行 Windows 10 的本地计算机上构建了一个 docker 映像
运行docker-compose build
、docker-compose up -d
和docker-compse logs -f
确实会产生预期的结果(没有错误)
通过运行winpty docker container run -i -t -p 8000:8000 --rm altf1be.plotly.docker-compose:2019-12-17
,应用程序可以正常运行
我将 docker 映像上传到私有 Azure 容器注册表
我基于docker镜像Azure Portal > Container registry > Repositories > altf1be.plotly.docker-compose > v2019-12-17 > context-menu > deploy to web app
部署web应用
-
我运行 Web 应用程序并收到
The service is unavailable
我的方法有什么问题?
提前感谢您在此问题上投入的时间
docker-compose.yml
version: '3.7'
services:
twikey-plot_ly_service:
# container_name: altf1be.plotly.docker-container-name
build: .
image: altf1be.plotly.docker-compose:2019-12-17
command: gunicorn --config=app/conf/gunicorn.conf.docker.staging.py app.webapp:server
ports:
- 8000:8000
env_file: .env.staging
.env/staging
apiUrl=https://api.beta.alt-f1.be
authorizationUrl=/api/auth/authorization/code
serverUrl=https://dunningcashflow-api.alt-f1.be
transactionFeedUrl=/creditor/tx
api_token=ANICETOKEN
Dockerfile
# read the Dockerfile reference documentation
# https://docs.docker.com/engine/reference/builder
# build the docker
# docker build -t altf1be.plotly.docker-compose:2019-12-17.
# https://docs.microsoft.com/en-us/azure/app-service/containers/tutorial-custom-docker-image#use-a-docker-image-from-any-private-registry-optional
# Use the docker images used by Microsoft on Azure
FROM mcr.microsoft.com/oryx/python:3.7-20190712.5
LABEL Name=altf1.be/plotly Version=1.19.0
LABEL maintainer="abo+plotly_docker_staging@alt-f1.be"
RUN mkdir /code
WORKDIR /code
ADD requirements.txt /code/
# copy the code from the local drive to the docker
ADD . /code/
# non interactive front-end
ARG DEBIAN_FRONTEND=noninteractive
# update the software repository
ENV SSH_PASSWD 'root:!astrongpassword!'
RUN apt-get update && apt-get install -y \
apt-utils \
# enable SSH
&& apt-get install -y --no-install-recommends openssh-server \
&& echo "$SSH_PASSWD" | chpasswd
RUN chmod u+x /code/init_container.sh
# update the python packages and libraries
RUN pip3 install --upgrade pip
RUN pip3 install --upgrade setuptools
RUN pip3 install --upgrade wheel
RUN pip3 install -r requirements.txt
# copy sshd_config file. See https://man.openbsd.org/sshd_config
COPY sshd_config /etc/ssh/
EXPOSE 8000 2222
ENV PORT 8000
ENV SSH_PORT 2222
# install dependencies
ENV ACCEPT_EULA=Y
ENV APPENGINE_INSTANCE_CLASS=F2
ENV apiUrl=https://api.beta.alt-f1.be
ENV serverUrl=https://dunningcashflow-api.alt-f1.be
ENV DOCKER_REGISTRY altf1be.azurecr.io
ENTRYPOINT ["/code/init_container.sh"]
/code/init_container.sh
gunicorn --config=app/conf/gunicorn.conf.docker.staging.py app.webapp:server
app/conf/gunicorn.conf.docker.staging.py
# -*- coding: utf-8 -*-
workers = 1
# print("workers: ".format(workers))
bind = '0.0.0.0'
timeout = 600
log_level = "debug"
reload = True
print(
f"workers=workers bind=bind timeout=timeout --log-level=log_level --reload=reload"
)
容器设置
应用程序设置
Web 应用程序正在运行 - '服务不可用'
Kudu - '服务不可用'
Kudu - 端口 8000 上的 http ping(应用未运行)
错误 - 站点 altf1be-plotly-docker 的容器 altf1be-plotly-docker_0_ee297002 已退出,站点启动失败
错误 - 容器 altf1be-plotly-docker_0_ee297002 未响应端口:8000 上的 HTTP ping,站点启动失败。查看容器日志进行调试。
【问题讨论】:
【参考方案1】:我看到的是你使用了错误的环境变量,应该是WEBSITES_PORT
,你错过了WEBSITE
后面的s。您可以添加它并尝试再次部署映像。
而且我认为 Azure Web App 不会像在 docker-compose 文件中使用选项 env_file
那样帮助您设置环境变量。所以我建议你通过命令docker build
创建镜像,并通过-e
设置环境变量在本地进行测试。当图像运行良好时,您可以将其推送到 ACR 并使用 Web App 中的环境变量从 ACR 部署它。
或者您仍然可以使用 docker-compose 文件在 Web App 中部署您的图像,而不是使用 environment
和 environment
和 image
在 ACR 中部署图像。
【讨论】:
存在几个问题:WEBSITES_PORT 拼写错误,启动文件是启动 gunicorn 的命令行以上是关于Azure 容器生成错误“503”原因“站点不可用”的主要内容,如果未能解决你的问题,请参考以下文章
服务器返回503错误Visual Studio代码MarketPlace [关闭]
Springboot 容器使用 docker-compose 连接到 mongo 容器的 503 错误代码