Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 1.05 KB

README.md

File metadata and controls

36 lines (26 loc) · 1.05 KB

mixin-builder

Usage

The official images are hosted at Github and signed by Cosign:

docker pull ghcr.io/thinkmassive/mixin-builder:main

Additional images are published to DockerHub for convenience, although using the GHCR images is recommended.

Any of the bundled tools can be run the same as if they were installed natively:

# mixtool
alias mixtool='docker run --rm -v $(pwd):/mixin --entrypoint=mixtool ghcr.io.thinkmassive/mixin-builder:main'

# jsonnet & jsonnetfmt
alias jsonnet='docker run --rm -v $(pwd):/mixin --entrypoint=jsonnet ghcr.io.thinkmassive/mixin-builder:main'
alias jsonnetfmt='docker run --rm -v $(pwd):/mixin --entrypoint=jsonnetfmt ghcr.io.thinkmassive/mixin-builder:main'

# jb
alias jb='docker run --rm -v $(pwd):/mixin --entrypoint=jb ghcr.io.thinkmassive/mixin-builder:main'

Building the image

IMG_REPO=mixin-builder
IMG_TAG=dev

docker build -t $IMG_REPO:$IMG_TAG .