dazzle

(★ 229)

dazzle is a rather experimental Docker image builder which builds independent layers

File Explorer

  • .gitignore
  • .gitpod.Dockerfile
  • .gitpod.yml
  • .golangci.yaml
  • .goreleaser.yml
  • Dockerfile
  • example.sh
  • go.mod
  • go.sum
  • integration_tests.sh
  • LICENSE
  • logo.png
  • main-util.go
  • main.go
  • README.md
  • testspec.schema.json
  • tools.go

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

docker build

View Details ▼

Build an image from a Dockerfile.

docker build .

Build a Docker image using the Dockerfile in the current directory:

docker build {{github.com/creack/docker-firefox}}

Build a Docker image from a Dockerfile at a specified URL:

docker build {{[-t|--tag]}} {{name:tag}} .

Build a Docker image and tag it:

🔍

docker run

View Details ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

go generate

View Details ▼

Generate Go files by running commands within source files.

go generate

Generate Go files by running commands within source files:

🔍

go run

View Details ▼

Compile and run Go code without saving a binary.

go run {{path/to/file.go}}

Run a Go file:

go run {{path/to/package}}

Run a main Go package:

🔍

go version

View Details ▼

Display Go version.

go version

Display version:

go version {{path/to/executable}}

Display the Go version used to build a specific executable file:

// repository documentation