kind: pipeline type: docker name: default steps: - name: backend image: composer:2.1.14 commands: - cd backend && composer install volumes: - name: host_docker_sock path: /tmp/cache - name: frontend image: node:16.13.1-alpine commands: - cd frontend && npm install && npm run build volumes: - name: host_docker_sock path: /tmp/cache - name: build-docker-image image: plugins/docker settings: context: docker/ dockerfile: docker/Dockerfile.drone auto_tag: true repo: registry.xrg.io/xrg.es registry: https://registry.xrg.io username: from_secret: registry_username password: from_secret: registry_password volumes: - name: host_docker_sock path: /tmp/cache #when: # event: # - tag volumes: - name: host_docker_sock host: path: /var/run/docker.sock