diff --git a/Jenkinsfile b/Jenkinsfile index c6403f3..9d0f454 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,7 +4,7 @@ pipeline { environment { DOCKER_IMAGE_NAME = "weetikveel" DOCKER_REGISTRY = "veenm" // Optioneel als je Docker image naar Docker Hub wilt pushen - TRUENAS_HOST = "77.175.130.12:9000" // IP-adres van TrueNAS + TRUENAS_HOST = "192.168.2.31:9000" // IP-adres van TrueNAS TRUENAS_SSH_USER = "jenkins" // Gebruiker voor SSH TRUENAS_SSH_KEY = credentials('ssh-true-nas') // Voeg een SSH-sleutel toe in Jenkins credentials } @@ -12,7 +12,7 @@ pipeline { stages { stage('Checkout') { steps { - git 'https://github.com/veenm/weetikveel.git' // Vervang door jouw repository URL + git 'https://git.melvanveen.nl/veenm/weetikveel.git' // Vervang door jouw repository URL } }