我正在尝试获取一些模板信息,以显示在Docker container
所提供的网页上。它正在使用uWSGI
。模板的名称为base.html
有"装饰"与位于base.html
中的static directory
文件相关联。更具体地说,它位于static/wforms/assets
目录中。
以下是模板中assets
目录的使用方法。
<link href="{% static 'wforms/assets/global/plugins/font-awesome/css/font-awesome.min.css' %}" rel="stylesheet" type="text/css" />
<link href="{% static 'wforms/assets/global/plugins/simple-line-icons/simple-line-icons.min.css' %}" rel="stylesheet" type="text/css" />
<link href="{% static 'wforms/assets/global/plugins/bootstrap/css/bootstrap.min.css' %}" rel="stylesheet" type="text/css" />
每当我转到使用base.html
模板的页面时,都找不到装饰,并且生成的网页很乱。在PyCharm中一切正常。将所有内容移动到Docker容器中的目录结构时会发生此问题。下面是PyCharm中的目录结构。
我像这样启动容器:
docker run -it --rm -p 8888:8888 -v /home/dockcclubdjango/apps/wforms/assets:/code/backendworkproj/static/wforms/assets --name my-running-app my-python-app
仅供参考, / home / dockcclubdjango / apps / wforms / assets 确实存在且信息正确。
然后,我尝试访问网页主页。该页面显示了所有&#34;装饰&#34;没有。所以,页面看起来有些凌乱。像这样:
我查看页面的源代码,并参阅下面的内容。
<link href="/static/wforms/assets/global/plugins/bootstrap-daterangepicker/daterangepicker.min.css" rel="stylesheet" type="text/css" /> <<< got 404 error in log file
<link href="/static/wforms/assets/global/plugins/morris/morris.css" rel="stylesheet" type="text/css" /> <<< got 404 error in log file
<link href="/static/wforms/assets/global/plugins/fullcalendar/fullcalendar.min.css" rel="stylesheet" type="text/css" /> <<< got 404 error in log file
我注意到找不到与assets
目录关联的任何项目。 列出的每件商品都会在日志中显示404 Error
。
所以,我尝试以下方法以不同的方式启动Docker Container
(如下所示),但它不起作用
docker run -it --rm -p 8888:8888 -v /home/dockcclubdjango/apps/wforms/assets:/static/wforms/assets --name my-running-app my-python-app
我开始查看settings.py
文件但不确定可能出现的问题。
settings.py文件(缩小以使其更简单 - 专注于STATIC dirs
import os
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
TEMPLATE_DIR = os.path.join(BASE_DIR, 'templates')
STATIC_DIR = os.path.join(BASE_DIR, 'static')
MEDIA_DIR = os.path.join(BASE_DIR, 'media')
DEBUG = True
ROOT_URLCONF = 'backendworkproj.urls'
WSGI_APPLICATION = 'backendworkproj.wsgi.application'
SESSION_COOKIE_AGE = 10*60
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, "static")
STATICFILES_DIRS = [
os.path.join(BASE_DIR, "static"),
]
STATIC_ROOT = "/var/www/cclub.com/static/"
MEDIA_ROOT = MEDIA_DIR
我看到了这个帖子 Docker Django 404 for web static files, but fine for admin static files
并在其中进行了更改,但事情仍然无效(页面上的&#34;装饰&#34;仍然显示404错误。不确定下一步该在哪里。我在这里缺少什么?
TIA
@PekosoG - 当我使用下面的建议时,运行 docker build -t my-python-app时会得到以下内容。
---> Running in fde638af597f
Traceback (most recent call last):
File "/code/backendworkproj/manage.py", line 22, in <module>
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.6/site-packages/django/core/management/__init__.py", line 364, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.6/site-packages/django/core/management/__init__.py", line 356, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 283, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 330, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.6/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py", line 199, in handle
collected = self.collect()
File "/usr/local/lib/python3.6/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py", line 114, in collect
for finder in get_finders():
File "/usr/local/lib/python3.6/site-packages/django/contrib/staticfiles/finders.py", line 264, in get_finders
yield get_finder(finder_path)
File "/usr/local/lib/python3.6/site-packages/django/contrib/staticfiles/finders.py", line 277, in get_finder
return Finder()
File "/usr/local/lib/python3.6/site-packages/django/contrib/staticfiles/finders.py", line 66, in __init__
"The STATICFILES_DIRS setting should "
django.core.exceptions.ImproperlyConfigured: The STATICFILES_DIRS setting should not contain the STATIC_ROOT setting
恢复旧设置(因为他上面的解决方案没有解决问题)
答案 0 :(得分:1)
我有类似的问题,我这样解决:
设置文件
STATIC_URL = '/static/'
STATIC_FOLDER = 'static'
STATICFILES_DIRS = [
os.path.join(BASE_DIR,STATIC_FOLDER),
]
STATIC_ROOT = os.path.join(BASE_DIR, "static/")
当我运行manage.py命令初始化时,我添加了这个
python manage.py collectstatic -link --noinput
答案 1 :(得分:0)