Django、docker、nginx、gunicorn のセットアップで問題が発生しています。静的ファイルをインストールした後でも、サーバーの実行時に静的ファイルを表示できませんcollectstatic
。また、nginx を使用している場合は、使用しているポートが既に割り当てられているというエラーが表示されるか、ポートを変更すると「ゲートウェイが無効です」というエラーが表示されますが、gunicorn が使用しているポート (私の場合はポート 8000) は引き続き使用できます。
私の docker-compose.yml ファイル:
version: '3'
services:
db:
image: postgres:latest
container_name: rapid_goat_postgres_server_1
nginx:
image: nginx:latest
container_name: rapid_goat_nginx_1
ports:
- "8000:8000"
volumes:
- .:/code
- ./nginx:/etc/nginx/conf.d
- /static:/static
depends_on:
- web
web:
build: .
container_name: rapid_goat_django
command: bash -c "chmod -R 755 . && cd rapidgoat_scraper_product && python3 manage.py collectstatic --noinput && python3 manage.py makemigrations && python3 manage.py migrate && gunicorn rapidgoat_scraper.wsgi -b 0.0.0.0:8000 --workers 6"
volumes:
- .:/code
ports:
- "8000:8000"
depends_on:
- db
私の nginx 設定ファイル:
upstream web {
ip_hash;
server web:8000;
}
server {
location /static/ {
autoindex on;
root /code/static/;
}
location / {
proxy_pass http://web/;
}
listen 8000;
server_name localhost;
}
上記の 2 つのファイルをそのまま実行すると、実行時に次のエラーが発生しますdocker-compose up --build
。
ERROR: for 693800faea42_693800faea42_693800faea42_my_nginx_docker_container Cannot start service nginx: driver failed programming external connectivity on endpoint my_nginx_docker_container (48eab4028fad0c54d8bbf5669fe746c24f293cfeb11dc57c8566d4010a995a83): Bind for 0.0.0.0:8000 failed: port is already allocated
ERROR: for nginx Cannot start service nginx: driver failed programming external connectivity on endpoint my_nginx_docker_container (48eab4028fad0c54d8bbf5669fe746c24f293cfeb11dc57c8566d4010a995a83): Bind for 0.0.0.0:8000 failed: port is already allocated
ERROR: Encountered errors while bringing up the project.
そして、docker-compose.yml ファイルから nginx サービスを削除すると、gunicorn サーバーを起動できますが、静的ファイルは提供されません。アプリ内テンプレートも使用しているため、私の Django プロジェクト構造は次のようになります。
- project
-- __init__.py
-- settings.py
-- urls.py
-- wsgi.py
- appname
-- migrations
-- static
--- appname
... then rest of static files like js, css, images... etc
-- templates
--- appname
... then all of my html files. I am using django templating.
-- admin.py
-- apps.py
-- forms.py
-- models.py
-- tests.py
-- views.py
私もdjango 2.0.3を使用しています
編集:
以下は、nginx を削除した場合 (nginx のポートを変更した場合と同じ) で、gunicorn が静的を提供しない場合の同じファイルです。
私の docker-compose.yml ファイル:
version: '3'
services:
db:
image: postgres:latest
container_name: rapid_goat_postgres_server_1
web:
build: .
container_name: rapid_goat_django
command: bash -c "chmod -R 755 . && cd rapidgoat_scraper_product && python3 manage.py collectstatic --noinput && python3 manage.py makemigrations && python3 manage.py migrate && gunicorn rapidgoat_scraper.wsgi -b 0.0.0.0:8000 --workers 6"
volumes:
- .:/code
ports:
- "8000:8000"
depends_on:
- db
ああ、私の Dockerfile は次のとおりです:
FROM python:3
ENV PYTHONUNBUFFERED 1
RUN mkdir /code
RUN mkdir /static
WORKDIR /code
ADD requirements.txt /code/
RUN pip install -r requirements.txt
ADD . /code/