mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-16 22:09:25 +08:00
Added --noinput to collectstatic to prevent crash
This commit is contained in:
parent
1cc6b0a724
commit
3aacf66aaf
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ services:
|
|||
- "8083:8000" # Expose port 8083 for the web server
|
||||
environment:
|
||||
- PYTHONBUFFERED=1
|
||||
command: ["sh", "-c", "python stude/manage.py collectstatic && python stude/manage.py makemigrations && python stude/manage.py custom_migrate && python stude/manage.py runserver"]
|
||||
command: ["sh", "-c", "python stude/manage.py collectstatic --noinput && python stude/manage.py makemigrations && python stude/manage.py custom_migrate && python stude/manage.py runserver"]
|
||||
volumes:
|
||||
- .:/code # For hotreloading
|
||||
depends_on:
|
||||
|
|
Loading…
Reference in a new issue