mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-10-31 22:19:00 +00:00
Drop --no-cache as well
Since several of our services share the same image, this should speed up building a good bit, and --no-cache shouldn't be necessary - if we're still having issues with things not updating, we should figure out how to arrange the Dockerfile, but I think it should be fine as-is.
This commit is contained in:
parent
7ab8209046
commit
1dc5467969
1 changed files with 1 additions and 1 deletions
2
bw-dev
2
bw-dev
|
@ -80,7 +80,7 @@ case "$CMD" in
|
||||||
;;
|
;;
|
||||||
update)
|
update)
|
||||||
git pull
|
git pull
|
||||||
docker-compose build --no-cache
|
docker-compose build
|
||||||
runweb python manage.py migrate
|
runweb python manage.py migrate
|
||||||
runweb python manage.py collectstatic --no-input
|
runweb python manage.py collectstatic --no-input
|
||||||
docker-compose up -d
|
docker-compose up -d
|
||||||
|
|
Loading…
Reference in a new issue