Update .woodpecker.yml

This commit is contained in:
Keannu Bernasol 2024-12-12 02:14:13 +08:00
parent bf55d01084
commit a5a0706f28

View file

@ -10,16 +10,14 @@ steps:
- echo "$WOODPECKER_SSH_KEY" | tr -d '\r' > /root/.ssh/id_rsa - echo "$WOODPECKER_SSH_KEY" | tr -d '\r' > /root/.ssh/id_rsa
- chmod 600 /root/.ssh/id_rsa - chmod 600 /root/.ssh/id_rsa
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > /root/.ssh/config - echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > /root/.ssh/config
- ssh "$SSH_HOST" ' - ssh "$SSH_HOST" "
cd "$PROJECT_DIRECTORY"; cd "$PROJECT_DIRECTORY";
pwd;
ls -a;
docker-compose down; docker-compose down;
docker image rm "$REGISTRY_IMAGE_TAG" || true; docker image rm "$REGISTRY_IMAGE_TAG" || true;
docker volume rm "$DOCKER_DB_VOLUME" || true; docker volume rm "$DOCKER_DB_VOLUME" || true;
docker pull "$REGISTRY_IMAGE_TAG"; docker pull "$REGISTRY_IMAGE_TAG";
docker-compose up -d; docker-compose up -d;
docker image prune -af;' docker image prune -af;"
secrets: secrets:
[ [
SSH_HOST, SSH_HOST,