public-health-ch/Makefile

106 lines
2.8 KiB
Makefile
Raw Normal View History

2017-04-08 14:32:52 +02:00
export COMPOSE_FILE=./docker-compose.yml
export COMPOSE_PROJECT_NAME=publichealth
default: build
build-cached:
docker-compose build
build:
docker-compose build --no-cache
2017-05-05 16:35:06 +02:00
run-here:
2017-04-08 14:32:52 +02:00
docker-compose stop web # for restart cases, when already running
docker-compose up
2017-05-05 16:35:06 +02:00
run:
docker-compose up -d # detach by default
2017-04-08 14:32:52 +02:00
2017-05-05 16:35:06 +02:00
restart:
2017-04-08 14:32:52 +02:00
docker-compose stop web
docker-compose up -d web
stop:
docker-compose stop
migrate:
docker-compose exec web ./manage.py migrate
migrations:
2017-05-05 16:35:06 +02:00
docker-compose exec web ./manage.py makemigrations --merge
2017-04-08 14:32:52 +02:00
apply-migrations: migrations migrate
setup:
docker-compose exec web ./manage.py migrate
docker-compose exec web ./manage.py createsuperuser
docker-compose exec web ./manage.py compress
docker-compose exec web ./manage.py collectstatic
release:
2017-05-10 18:08:35 +02:00
sudo docker-compose build web
2017-04-08 14:32:52 +02:00
docker-compose stop web
docker-compose kill web
docker-compose up -d web
2017-05-05 16:57:28 +02:00
docker-compose exec web ./manage.py collectstatic --noinput
docker-compose exec web ./manage.py compress
2017-04-08 14:32:52 +02:00
2017-05-03 23:13:30 +02:00
reindex:
docker-compose exec web ./manage.py update_index
2017-05-04 00:07:07 +02:00
clear_index:
docker-compose exec elasticsearch curl -XDELETE localhost:9200/_all
2017-04-08 14:32:52 +02:00
django-exec-bash:
2017-05-05 16:57:28 +02:00
# execute bash in the currently running container
2017-04-08 14:32:52 +02:00
docker-compose exec web bash
django-run-bash:
# run new django container, with bash, and remove it after usage
docker-compose run --rm --no-deps web bash
django-shell:
docker-compose exec web ./manage.py shell
logs:
docker-compose logs -f --tail=500
2017-05-16 11:59:48 +02:00
backup:
2017-10-16 11:18:50 +02:00
docker-compose start postgres
2017-10-16 11:43:24 +02:00
docker-compose exec web ./manage.py dumpdata --natural-foreign -e auth.permission -e contenttypes -e wagtailcore.GroupCollectionPermission -e wagtailimages.rendition -e sessions -e feedler.feedlysettings > ~/publichealth.home.json
2017-05-16 11:59:48 +02:00
zip ~/publichealth.home.json.`date +"%d%m%Y-%H%M"`.zip ~/publichealth.home.json
rm ~/publichealth.home.json
2017-04-25 16:00:32 +02:00
django-loaddata:
gunzip ~/publichealth.home.json.gz
docker-compose exec web ./manage.py loaddata ~/publichealth.home.json
2017-05-05 16:35:06 +02:00
restore: django-loaddata restart
2017-04-25 16:00:32 +02:00
psql:
docker-compose exec postgres psql -U postgres -d postgres
2017-04-08 14:32:52 +02:00
pg-run-detached:
2017-04-25 16:00:32 +02:00
# start pg service
docker-compose up -d postgres
2017-04-08 14:32:52 +02:00
pg-exec:
2017-04-25 16:00:32 +02:00
docker-compose exec postgres bash
2017-04-08 14:32:52 +02:00
pg-dump:
2017-05-16 11:59:48 +02:00
docker-compose exec postgres bash -c 'pg_dump -U postgres -d postgres -f ./latest.sql'
pg-backup:
docker-compose exec postgres bash -c 'pg_dump -U postgres -d postgres' > ~/pg-backup.sql
zip ~/pg-backup.sql.`date +"%d%m%Y-%H%M"`.zip ~/pg-backup.sql
rm ~/pg-backup.sql
2017-04-08 14:32:52 +02:00
pg-restore:
2017-05-16 11:59:48 +02:00
docker-compose exec postgres bash -c 'psql -U postgres -d postgres -f ./latest.sql'
2017-04-08 14:32:52 +02:00
pg-surefire-drop-restore-db:
2017-04-25 16:00:32 +02:00
# drop existing database, recreate it, and then restore its content from backup.
2017-09-20 12:05:58 +02:00
docker-compose exec postgres bash -c 'dropdb -h localhost -U postgres postgres'
2017-04-25 16:00:32 +02:00
docker-compose exec postgres bash -c 'createdb -h localhost -U postgres postgres'
2017-04-08 14:32:52 +02:00
make pg-restore