mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-23 10:01:04 +00:00
Adds pdb-friendly docker-compose run to fr-dev
This commit is contained in:
parent
49b2ad1d48
commit
fbb4507a64
1 changed files with 34 additions and 31 deletions
9
fr-dev
9
fr-dev
|
@ -5,8 +5,10 @@ set -x
|
||||||
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
up)
|
up)
|
||||||
docker-compose build
|
docker-compose up --build
|
||||||
docker-compose up
|
;;
|
||||||
|
run)
|
||||||
|
docker-compose run --service-ports web
|
||||||
;;
|
;;
|
||||||
initdb)
|
initdb)
|
||||||
docker-compose exec web python manage.py migrate
|
docker-compose exec web python manage.py migrate
|
||||||
|
@ -33,6 +35,7 @@ case "$1" in
|
||||||
docker-compose exec db psql -U fedireads fedireads
|
docker-compose exec db psql -U fedireads fedireads
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Unrecognised command."
|
echo "Unrecognised command. Try: up, initdb, resetdb,makemigrations, migrate, shell, dbshell "
|
||||||
|
docker-compose build
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue