Compare commits

...

9 commits

2 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
labels:
platform: linux/amd64
platform: linux/arm64
steps:
- name: build

View file

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