[Buildbot] #2990: Tutorial

Buildbot trac trac at buildbot.net
Thu Oct 30 15:14:23 UTC 2014


#2990: Tutorial
---------------------+-----------------------
Reporter:  talmage   |      Owner:
    Type:  defect    |     Status:  new
Priority:  critical  |  Milestone:  undecided
 Version:  0.8.9     |   Keywords:
---------------------+-----------------------
 The [http://docs.buildbot.net/current/tutorial/docker.html First Buildbot
 run with Docker tutorial] gives incorrect instructions for running
 Buildbot in a Docker container. If invoked as written, docker won't expose
 port 22 or port 8010 to localhost. You need to be able to access port 22
 to log into the container with ssh.  Buildbot's web server runs on port
 8010.

 Here is a way to run Buildbot in a Docker container and expose ports 22
 and 8010:
 {{{
 docker run -d -p 127.0.0.1:8010:8010 -p 127.0.0.1:9999:22 buildbot
 }}}

 This exposes the container's port 8010 as port 8010 on localhost and the
 container's port 22 as port 9999 on the localhost.

--
Ticket URL: <http://trac.buildbot.net/ticket/2990>
Buildbot <http://buildbot.net/>
Buildbot: build/test automation


More information about the bugs mailing list