Check out the sidecar portion of these docs:
https://www.jenkins.io/doc/book/pipeline/docker/

I think maybe the initial agent part is what might not be making it work.

On Tue, Jun 16, 2020 at 14:48 Arturo Arenas <[email protected]> wrote:

> 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 [email protected].
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/15b91650-e515-4370-b23f-f2946ff12ff0o%40googlegroups.com
> <https://groups.google.com/d/msgid/jenkinsci-users/15b91650-e515-4370-b23f-f2946ff12ff0o%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

-- 
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CADgiF9KUs5FG%2BfyJBcE3OY2odV52838abqnib9bfodERR8144Q%40mail.gmail.com.

Reply via email to