私はフォローしましたこのチュートリアルdjango、gunicorn、nginx、postgresql を使用して Web アプリケーションをデプロイします。
チュートリアルの空のアプリケーションで作業しているときは、すべて問題ないように見えますが、その後、Django アプリを使用して同じ構成を再作成しようとすると、静的ファイルを収集しようとすると「権限が拒否されました」というメッセージが表示されます。
構成 yml は次のとおりです。
version: '3.7'
services:
postgres:
image: postgres:11.2-alpine
volumes:
- database:/var/lib/postgresql/data
env_file: .env.pg
django:
build: .
command: gunicorn mysite.wsgi:application --bind 0.0.0.0:8000
volumes:
- static:/usr/src/django/static
expose:
- 8000
env_file: .env
depends_on:
- postgres
nginx:
build: ./nginx
volumes:
- static:/usr/src/django/static
ports:
- 8009:80
depends_on:
- django
volumes:
database:
static:
実行時に表示されるエラーdocker-compose exec django python manage.py collectstatic --clear --noinput
は
Traceback (most recent call last):
File "manage.py", line 15, in <module>
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.7/site-packages/django/core/management/__init__.py", line 381, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.7/site-packages/django/core/management/__init__.py", line 375, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.7/site-packages/django/core/management/base.py", line 323, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.7/site-packages/django/core/management/base.py", line 364, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.7/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py", line 167, in handle
any(self.storage.listdir(destination_path))
File "/usr/local/lib/python3.7/site-packages/django/core/files/storage.py", line 315, in listdir
for entry in os.scandir(path):
PermissionError: [Errno 13] Permission denied: '/usr/src/django/static'
コンテナ内でシェルを実行してみました。「static」ディレクトリは本来あるべき場所にありますが、何も書き込めません (root でも)。postgres コンテナ内のデータベース ボリュームは正常に動作しているようなので、2 つのコンテナ間でボリュームを共有するときに問題が発生するのだと思います。
何か案が?