Add support for a config file #11
bayou-brogrammer
started this conversation in
General
Replies: 1 comment
-
I don't like the " Maybe a flat # bluebuild.toml
[build]
arg1 = "value"
push = true
[generate]
output = "out.Containerfile"
Or, I'm not sure why I thought of build:
arg1: value
push: true
generate:
output: out.Containerfile
Might also want different configs for the same thing, but not sure how that should be structured. commands:
- name: build-ghcr
type: build
push: true
registry-path: ghcr.io
- name: build-gitlab
type: build
push: true
registry-path: registry.gitlab.io
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I think supporting a config file like
.bluebuild
or something similar could be beneficial in the future.As our cli commands grows, users might have to enter more and more flags to get bluebuild to act how they intend, but having a config file to read from could save them from typing or using the same command over and over.
Beta Was this translation helpful? Give feedback.
All reactions