public-health-ch/Makefile

112 lines
2.9 KiB
Makefile
Raw Normal View History

2017-04-08 12:32:52 +00:00
export COMPOSE_FILE=./docker-compose.yml
export COMPOSE_PROJECT_NAME=publichealth
default: build
2019-01-10 09:38:52 +00:00
upgrade:
docker-compose pull
2017-04-08 12:32:52 +00:00
build-cached:
docker-compose build
build:
docker-compose build --no-cache
2017-05-05 14:35:06 +00:00
run-here:
2017-04-08 12:32:52 +00:00
docker-compose stop web # for restart cases, when already running
docker-compose up
2017-05-05 14:35:06 +00:00
run:
docker-compose up -d # detach by default
2017-04-08 12:32:52 +00:00
2017-05-05 14:35:06 +00:00
restart:
2017-04-08 12:32:52 +00: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 14:35:06 +00:00
docker-compose exec web ./manage.py makemigrations --merge
2017-04-08 12:32:52 +00: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:
2019-01-10 09:38:52 +00:00
docker-compose pull
2019-09-09 17:38:13 +00:00
sudo docker-compose build web --verbose
2017-04-08 12:32:52 +00:00
docker-compose stop web
docker-compose kill web
docker-compose up -d web
2019-09-09 17:38:13 +00:00
docker-compose exec web ./manage.py collectstatic --noinput -i media
2017-05-05 14:57:28 +00:00
docker-compose exec web ./manage.py compress
2017-04-08 12:32:52 +00:00
2017-05-03 21:13:30 +00:00
reindex:
docker-compose exec web ./manage.py update_index
2017-05-03 22:07:07 +00:00
clear_index:
docker-compose exec elasticsearch curl -XDELETE localhost:9200/_all
2017-04-08 12:32:52 +00:00
django-exec-bash:
2017-05-05 14:57:28 +00:00
# execute bash in the currently running container
2017-04-08 12:32:52 +00: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 09:59:48 +00:00
backup:
2017-10-16 09:18:50 +00:00
docker-compose start postgres
2017-10-16 09:43:24 +00: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 09:59:48 +00:00
zip ~/publichealth.home.json.`date +"%d%m%Y-%H%M"`.zip ~/publichealth.home.json
rm ~/publichealth.home.json
2018-06-18 14:18:16 +00:00
echo "Backing up images ..."
zip -ruq ~/media.zip media
2017-04-25 14:00:32 +00:00
django-loaddata:
gunzip ~/publichealth.home.json.gz
docker-compose exec web ./manage.py loaddata ~/publichealth.home.json
2017-05-05 14:35:06 +00:00
restore: django-loaddata restart
2017-04-25 14:00:32 +00:00
psql:
docker-compose exec postgres psql -U postgres -d postgres
2017-04-08 12:32:52 +00:00
pg-run-detached:
2017-04-25 14:00:32 +00:00
# start pg service
docker-compose up -d postgres
2017-04-08 12:32:52 +00:00
pg-exec:
2017-04-25 14:00:32 +00:00
docker-compose exec postgres bash
2017-04-08 12:32:52 +00:00
pg-dump:
2017-05-16 09:59:48 +00: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 12:32:52 +00:00
pg-restore:
2017-05-16 09:59:48 +00:00
docker-compose exec postgres bash -c 'psql -U postgres -d postgres -f ./latest.sql'
2017-04-08 12:32:52 +00:00
pg-surefire-drop-restore-db:
2017-04-25 14:00:32 +00:00
# drop existing database, recreate it, and then restore its content from backup.
2017-09-20 10:05:58 +00:00
docker-compose exec postgres bash -c 'dropdb -h localhost -U postgres postgres'
2017-04-25 14:00:32 +00:00
docker-compose exec postgres bash -c 'createdb -h localhost -U postgres postgres'
2017-04-08 12:32:52 +00:00
make pg-restore