kind: pipeline type: docker name: check services: - name: postgres image: docker.io/library/postgres:17.5 environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres - name: docker image: docker:dind privileged: true volumes: - name: dockersock path: /var/run trigger: event: - push steps: - name: build & publish container? image: docker:dind volumes: - name: dockersock path: /var/run commands: - sleep 5 # give docker time to start - docker ps -a - docker build --tag mitgliederverwaltung . volumes: - name: cache host: path: /tmp/drone_cache - name: dockersock temp: {} --- kind: pipeline type: docker name: renovate trigger: event: - cron - custom - push branch: - main environment: LOG_LEVEL: debug steps: - name: renovate image: renovate/renovate:41.37 environment: RENOVATE_CONFIG_FILE: "renovate_backend_config.js" RENOVATE_TOKEN: from_secret: RENOVATE_TOKEN GITHUB_COM_TOKEN: from_secret: GITHUB_COM_TOKEN commands: # https://github.com/renovatebot/renovate/discussions/15049 - unset GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL - renovate-config-validator - renovate