Fix volume name in .woodpecker.yml

This commit is contained in:
Keannu Bernasol 2024-08-30 20:10:17 +08:00
parent 079a63f69f
commit b5a645ac5f

View file

@ -27,6 +27,6 @@ steps:
docker-compose down;
docker image rm "$IMAGE_TAG" || true;
docker pull "$IMAGE_TAG":latest;
docker volume rm "$IMAGE_TAG"_db_data || true;
docker volume rm "${IMAGE_TAG}_db_data" || true;
docker compose up -d'
secrets: [IMAGE_TAG, SSH_KEY, PROJECT_DIR]