mirror of
https://github.com/dveselov/docsbox.git
synced 2026-04-25 04:55:47 +03:00
[GH-ISSUE #2] ImportError: No module named 'docsbox.settings' #1
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/docsbox#1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ConradIrwin on GitHub (Jan 30, 2018).
Original GitHub issue: https://github.com/dveselov/docsbox/issues/2
I tried running this with
docker-compose buildanddocker-compose up, but I'm seeing this error message repeated many times. Did I miss creating a configuration file?@rafalkasa commented on GitHub (May 18, 2018):
Hi, I have exactly the same issue, any solution for that ?
This issue only occur on Windows 10 machine, everything is working fine on ubuntu 16_04
@sujitsakre commented on GitHub (Nov 22, 2018):
Hi, we had the same issue on the windows 10 machine. You need to modify your docker-compose.yml file. e.g.
web:
restart: always
build: .\docsbox
expose:
- "8000"
links:
- redis:redis
volumes:
- c:\users\xyz\desktop\docsbox\docsbox:/home/docsbox
- c:\users\xyz\desktop\docsbox\media:/home/docsbox/media
- c:\xampp\htdocs:/home/docsbox/web
command: gunicorn -b :8000 docsbox:app
rqworker:
restart: always
build: .\docsbox
links:
- redis:redis
volumes_from:
- web
command: rq worker -c docsbox.settings
rqscheduler: