Categorygithub.com/jszwedko/docker-builder
modulepackage
0.9.0
Repository: https://github.com/jszwedko/docker-builder.git
Documentation: pkg.go.dev

# README

Welcome to Bob!

Build Status GoDoc

Bob, the docker-builder, builds, tags, and pushes multiple Docker images, all from a friendly Bobfile config file.

Other Topics

Quick Start

Steps to quick start:

# install docker-builder
go get github.com/rafecolton/docker-builder

$GOPATH/bin/docker-builder --help

More Reasonably-Paced Start

  1. Install docker-builder
  2. Explore the Writing a Bobfile doc
  3. Rundocker-builder --help
  4. Run docker-builder help build

First, Install docker-builder

Easiest

go get github.com/rafecolton/docker-builder

From pre-compiled binaries

# on Mac OS X
curl -sL https://github.com/rafecolton/docker-builder/releases/download/v0.9.0/docker-builder-v0.9.0-darwin-amd64 \
  -o /usr/local/bin/docker-builder && chmod +x /usr/local/bin/docker-builder

# on Linux, note: you may need sudo
curl -sL https://github.com/rafecolton/docker-builder/releases/download/v0.9.0/docker-builder-v0.9.0-linux-amd64 \
  -o /usr/local/bin/docker-builder && chmod +x /usr/local/bin/docker-builder

NOTE: Checksums available on the release page

From source

To build from source, run make build. You may have to install some things first, such as go.

Contributing

Pull requests welcome!

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Variables

Logger is the logger for the docker-builder main.