fix
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
oleg.vodyanov91@gmail.com 2025-04-23 00:09:32 +04:00
parent 71bd3c0fd3
commit 6f62b91f34
2 changed files with 5 additions and 3 deletions

View File

@ -22,8 +22,9 @@ docker run --rm --network app-net --name instagram_links_app \
docker run -d \
--name watchtower_app \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /root/.docker/config.json:/config.json \
containrrr/watchtower \
instagram_links_app
--interval 30 instagram_links_app
pip install gunicorn

View File

@ -1,5 +1,6 @@
#!/usr/bin/env bash
rm -rf /staticFiles && \
python manage.py collectstatic && \
python manage.py migrate && \
gunicorn wsgi:application --bind 0.0.0.0:8000