https://github.com/aep/bolter
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/aep/bolter
- Owner: aep
- Created: 2025-12-14T17:28:05.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-12-14T18:12:58.000Z (6 months ago)
- Last Synced: 2026-05-04T21:47:56.524Z (about 1 month ago)
- Language: Go
- Size: 107 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# Bolter
[](https://pkg.go.dev/github.com/aep/bolter)
a multi platform package manager for self-contained binaries
## CLI Usage
```bash
go install github.com/aep/bolter@latest
bolter push ghcr.io/me/myapp:v1.0.0 -b linux/amd64=linux-bin -b windows/amd64=windows.exe
bolter run ghcr.io/me/myapp:v1.0.0
```
## Library Usage
Bolter can also be used as a Go library to programmatically pull and run binaries from OCI registries:
```go
import "github.com/aep/bolter/pkg/bolter"
// Pull a binary
info, err := bolter.Pull(ctx, "ghcr.io/myuser/myapp:v1.0.0")
// Run a binary
err := bolter.Run(ctx, "ghcr.io/myuser/myapp:v1.0.0", []string{"--help"})
```