hello everybody !!

someone tried to do this?

node {
    docker.image('rabbitmq:3').withRun('--rm --hostname test-rabbit --name 
test-rabbit -p 15672:15672') { c ->
        docker.image('rabbitmq:3').inside("--link ${c.id}:db") {
          sh 'rabbitmqctl list_users'
        }
        docker.image('fedora').inside("--link ${c.id}:db") {
            sh 'ls'
        }
    }
}

also i tried to do this

pipeline {
    agent { 
        docker 'fedora' 
    }
    options {
        buildDiscarder(logRotator(numToKeepStr: '1'))
    }
    stages {
        stage('RabbitMQ') {
            steps {
              script {
                  docker.image('rabbitmq:3').withRun('--rm --hostname 
test-rabbit --name test-rabbit -p 15672:15672') { c ->
                    docker.image('rabbitmq:3').inside("--link ${c.id}:db") {
                        sh 'rabbitmqctl list_users'
                    }
                  }
              }
            }
        }
    }
}


I'm having problems to perform my script

thanks in advance

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/15b91650-e515-4370-b23f-f2946ff12ff0o%40googlegroups.com.

Reply via email to