我正在制作一个配有gunicorn的django应用程序。在应用程序中,我试图在selenium的帮助下生成整个网页的屏幕截图。
在我的本地环境中(通过python manage.py runserver
启动应用程序)一切正常。但是如果我在一个docker容器中运行它,它突然就不再起作用了。
我的应用程序如下所示:
from selenium import webdriver
driver = webdriver.PhantomJS()
driver.set_window_size(1024, 768)
driver.get(url)
driver.save_screenshot(filepath)
driver.quit()
在第二行执行期间,几秒钟后我收到以下错误消息,一切都重新启动。 我从来没有到窗口调整大小。遗憾的是,错误消息中没有更多信息。
[2018-03-19 01:41:36 +0000] [7] [CRITICAL] WORKER TIMEOUT (pid:19)
[2018-03-19 01:41:36 +0000] [19] [INFO] Worker exiting (pid: 19)
[2018-03-19 01:41:36 +0000] [28] [INFO] Booting worker with pid: 28
感谢this回答我现在至少收到一条错误消息:
app.views.add_views-77 ERROR 2018-03-19 02:36:24,668: Message: Can not connect to the Service phantomjs
Traceback (most recent call last):
[..]
driver = webdriver.PhantomJS()
File "/usr/lib/python3.6/site-packages/selenium/webdriver/phantomjs/webdriver.py", line 56, in __init__
self.service.start()
File "/usr/lib/python3.6/site-packages/selenium/webdriver/common/service.py", line 104, in start
raise WebDriverException("Can not connect to the Service %s" % self.path)
selenium.common.exceptions.WebDriverException: Message: Can not connect to the Service phantomjs
当使用Chrome
(来自alpine软件包存储库的chromium
和chromium-webdriver
)作为webdriver时,我也会遇到相同的行为。
这种情况发生在docker-compose而没有它。
Dockerfile:
FROM alpine:3.7
ENV PYTHONUNBUFFERED 1
ENV PHANTOMJS_VERSION 2.1.1
RUN mkdir /code
WORKDIR /code
COPY Pipfile Pipfile.lock ./
RUN apk update && \
apk add python3 postgresql-libs jpeg-dev git curl fontconfig && \
apk add --virtual .build-deps gcc python3-dev musl-dev postgresql-dev zlib-dev && \
mkdir -p /opt && \
pip3 install --no-cache-dir pipenv && \
pipenv install --system && \
curl -L https://github.com/Overbryd/docker-phantomjs-alpine/releases/download/2.11/phantomjs-alpine-x86_64.tar.bz2 | tar xjC /opt && \
ln -s /opt/phantomjs/phantomjs /usr/bin/phantomjs && \
apk --purge del .build-deps
COPY . ./
RUN adduser -D noroot
USER noroot
EXPOSE $PORT
CMD gunicorn app.wsgi --bind 0.0.0.0:$PORT --log-file -
这可能是什么问题?