mirror of
https://github.com/Crocmagnon/ansible.git
synced 2024-11-22 15:28:02 +01:00
9 lines
268 B
Bash
Executable file
9 lines
268 B
Bash
Executable file
#!/bin/bash
|
|
set -euxo pipefail
|
|
pushd /mnt/data/checkout
|
|
docker compose --ansi never pull --quiet
|
|
docker compose --ansi never up -d
|
|
docker compose exec django python manage.py migrate
|
|
docker compose exec django python manage.py refresh_cache
|
|
popd
|
|
docker image prune -f
|