mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-23 01:51:08 +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
|
||||
up)
|
||||
docker-compose build
|
||||
docker-compose up
|
||||
docker-compose up --build
|
||||
;;
|
||||
run)
|
||||
docker-compose run --service-ports web
|
||||
;;
|
||||
initdb)
|
||||
docker-compose exec web python manage.py migrate
|
||||
|
@ -33,6 +35,7 @@ case "$1" in
|
|||
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
|
||||
|
|
Loading…
Reference in a new issue