docker-utils
external utilities for the docker experience
File Explorer
- main.go
- README.md
- .godir
- main.go
- README.md
- main.go
- main.go
- main.go
- dockerfile.go
- Dockerfile
- Dockerfile.build
- Makefile
- README.md
- README.md
- list.go
- list_test.go
- fetch.go
- fetch_test.go
- imageref.go
- registryv1.go
- extract.go
- registry.go
- checks.go
- checks_test.go
- layer.go
- versioncheck.go
- versioncheck_test.go
- version.go
- .travis.yml
- Dockerfile
- LICENSE
- README.md
# Use via CDN
jsDelivrjsDelivr 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 save
View Details ▼
docker save
This command is an alias of `docker image save`.
tldr docker image save
View documentation for the original command:
go get
View Details ▼
go get
Add a dependency package, or download packages in legacy GOPATH mode.
Note: `./...` is a Go package pattern understood by Go tooling. It matches the current package and all packages recursively under the current directory.
go get {{example.com/pkg}}
Add a specified package to `go.mod` in module-mode or install the package in GOPATH-mode:
go get {{example.com/pkg}}@{{v1.2.3}}
Modify the package with a given version in module-aware mode:
go get {{example.com/pkg}}@{{none}}
Remove a specified package:
gpg
View Details ▼
gpg
GNU Privacy Guard, an OpenPGP encryption and signing tool.
See also: `sq`.
gpg {{[--full-gen-key|--full-generate-key]}}
Create a GPG public and private key interactively:
gpg {{[-k|--list-keys]}}
List all keys from the public keyring:
gpg --clearsign {{doc.txt}}
Sign `doc.txt` without encryption (writes output to `doc.txt.asc`):
tar
View Details ▼
tar
Archiving utility.
Often combined with a compression method, such as `gzip` or `bzip2`.
tar cf {{path/to/target.tar}} {{path/to/file1 path/to/file2 ...}}
[c]reate an archive and write it to a [f]ile:
tar czf {{path/to/target.tar.gz}} {{path/to/file1 path/to/file2 ...}}
[c]reate a g[z]ipped archive and write it to a [f]ile:
tar czf {{path/to/target.tar.gz}} {{[-C|--directory]}} {{path/to/directory}} .
[c]reate a g[z]ipped (compressed) archive from a directory using relative paths:
# Project Badges
-
Build Status Visit
