https://github.com/appscodelabs/baler
Save and Load a collection of Docker Images from a compact archive
https://github.com/appscodelabs/baler
docker package-manager
Last synced: 3 months ago
JSON representation
Save and Load a collection of Docker Images from a compact archive
- Host: GitHub
- URL: https://github.com/appscodelabs/baler
- Owner: appscodelabs
- License: apache-2.0
- Created: 2016-12-07T05:42:01.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-26T13:49:07.000Z (about 9 years ago)
- Last Synced: 2024-07-30T19:48:26.625Z (almost 2 years ago)
- Topics: docker, package-manager
- Language: Go
- Homepage:
- Size: 661 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://goreportcard.com/report/github.com/appscode/baler)
[Website](https://appscode.com) • [Slack](https://slack.appscode.com) • [Forum](https://discuss.appscode.com) • [Twitter](https://twitter.com/AppsCodeHQ)
# baler
Save and Load a collection of Docker Images from a compact archive

## Installation
```go
go get -u github.com/appscode/baler
```
## Usage
```sh
baler [command] [flags]
baler [command]
Available Commands:
load Load Docker images from a baler archive
pack Create a baler archive from manifest
rmi Remove images specified in manifest
unpack Unpack a baler archive into a directory
version Prints binary version number.
Flags:
--alsologtostderr log to standard error as well as files
--log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0)
--log_dir string If non-empty, write log files in this directory
--logtostderr log to standard error instead of files
--stderrthreshold severity logs at or above this threshold go to stderr (default 2)
-v, --v Level log level for V logs
--vmodule moduleSpec comma-separated list of pattern=N settings for file-filtered logging
Use "baler [command] --help" for more information about a command.
```
### Sample Baler Manifest
```json
{
"name": "test",
"images": [
"debian:8.6",
"appscode/base:8.6",
"appscode/kubed:1.5.0"
]
}
```
### Issues
Please file an issue if you think you've found a bug. Be sure to describe
* How can it be reproduced?
* What did you expect?
* What actually occurred?
* Go version, platform, etc. if possibly relevant.