# bob-builder: builds images, from your code. UNDER DEVELOPMENT ## Usage This software is intended to be used with Docker. It requires Docker privlidges, as it runs Docker itself. First, we'll go through the basics of running this software in Docker, then I'll show you the basics of running it, pretending Docker isn't involved. ### Running with Docker Run a build of your current working directory: $ docker run --privileged -v $(pwd):/app kennethreitz/bob-builder some-imagename Run a build of your current working directory, using your native docker instance: $ docker run --privileged -v $(pwd):/app -v /var/run/docker.sock:/var/run/docker.sock kennethreitz/bob-builder some-imagename ### Using the Software # Build a Dockerfile-based image. $ Building with Docker. # Build a Buildpack-style repo. $ bob-builder Building with Heroku-ish. # Build a Buildpack-style repo with a custom buildpack. $ bob-builder --buildpack= Building with Heroku-ish, with custom buildpack. # Push to registry too. $ bob-builder --push # Push to registry (with credentials) too. $ bob-builder --username=username --password=password --push By default, each build will be tagged with a uuid4, unless you specify your own tag in the image name.