mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2024-12-04 18:46:52 +00:00
Migrate in the entrypoint, not in the docker build
This commit is contained in:
parent
4238e49c11
commit
b0a3a22f83
@ -16,9 +16,7 @@ RUN pip install -r requirements.txt --no-cache-dir
|
|||||||
COPY . /code/
|
COPY . /code/
|
||||||
|
|
||||||
RUN python manage.py collectstatic --noinput && \
|
RUN python manage.py collectstatic --noinput && \
|
||||||
python manage.py compilemessages && \
|
python manage.py compilemessages
|
||||||
python manage.py migrate && \
|
|
||||||
python manage.py loaddata initial
|
|
||||||
|
|
||||||
# Configure nginx
|
# Configure nginx
|
||||||
RUN mkdir /run/nginx
|
RUN mkdir /run/nginx
|
||||||
|
@ -2,10 +2,13 @@
|
|||||||
|
|
||||||
crond -l 0
|
crond -l 0
|
||||||
|
|
||||||
|
python manage.py migrate
|
||||||
|
python manage.py loaddata initial
|
||||||
|
|
||||||
nginx
|
nginx
|
||||||
|
|
||||||
if [ "$CORRES2MATH_STAGE" = "prod" ]; then
|
if [ "$CORRES2MATH_STAGE" = "prod" ]; then
|
||||||
gunicorn -b 0.0.0.0:8000 --workers=2 --threads=4 --worker-class=gthread corres2math.wsgi --access-logfile '-' --error-logfile '-';
|
gunicorn -b 0.0.0.0:8000 --workers=2 --threads=4 --worker-class=gthread corres2math.wsgi --access-logfile '-' --error-logfile '-';
|
||||||
else
|
else
|
||||||
./manage.py runserver 0.0.0.0:8000;
|
python manage.py runserver 0.0.0.0:8000;
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user