diff --git a/.drone.yml b/.drone.yml index e2fa448..f1c4356 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,41 +6,36 @@ trigger: - push steps: - - name: sonar - image: sonarsource/sonar-scanner-cli:5 - commands: - - sonar-scanner -Dsonar.projectKey=drone-health-clfreville2 -Dsonar.sources=. -Dsonar.login=$${PLUGIN_SONAR_TOKEN} -Dsonar.host.url=$${PLUGIN_SONAR_HOST} -Dsonar.php.coverage.reportPaths=coverage.xml - settings: - sonar_host: - from_secret: sonar_host - sonar_token: - from_secret: sonar_token - - name: rewrite-urls - image: busybox:latest - commands: - - find . -type f -exec sed -i -r "s@(href|src)=\"/@\1=\"$${PLUGIN_CONTAINER_PATH}@g" {} + + - name: docker-build-and-push + image: plugins/docker settings: - container_path: /containers/clementfreville2-drone-health/ + dockerfile: docker/Dockerfile + context: . + registry: hub.codefirst.iut.uca.fr + repo: hub.codefirst.iut.uca.fr/camille.petitalot/drone-health + username: + from_secret: SECRET_REGISTRY_USERNAME + password: + from_secret: SECRET_REGISTRY_PASSWORD + mirror: https://proxy.iut.uca.fr:8443 - - name: docker-build-and-push + - name: docker-build-and-push-2 image: plugins/docker settings: dockerfile: docker/Dockerfile context: . registry: hub.codefirst.iut.uca.fr - repo: hub.codefirst.iut.uca.fr/clement.freville2/drone-health + repo: hub.codefirst.iut.uca.fr/camille.petitalot/drone-health username: from_secret: SECRET_REGISTRY_USERNAME password: from_secret: SECRET_REGISTRY_PASSWORD - depends_on: - - rewrite-urls - name: deploy-container image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dockerproxy-clientdrone:latest environment: - IMAGENAME: hub.codefirst.iut.uca.fr/clement.freville2/drone-health:latest + IMAGENAME: hub.codefirst.iut.uca.fr/camille.petitalot/drone-health:latest CONTAINERNAME: drone-health COMMAND: create OVERWRITE: true