summaryrefslogtreecommitdiffstats
path: root/config.toml
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-09-27 22:50:31 +0200
committerMatthias Beyer <matthias.beyer@atos.net>2020-10-12 15:14:17 +0200
commitb542789c87e2acdc1de3d52bd0670ace325a87d3 (patch)
tree13e3817c59f1db797b71f8c13c07a4a826c6b651 /config.toml
Initial import
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'config.toml')
-rw-r--r--config.toml35
1 files changed, 35 insertions, 0 deletions
diff --git a/config.toml b/config.toml
new file mode 100644
index 0000000..456b4ac
--- /dev/null
+++ b/config.toml
@@ -0,0 +1,35 @@
+# repository of package definitions
+repository = "/tmp/path"
+
+# Phases which can be configured in the packages
+
+# This also defines the _order_ in which the phases are executed
+# Each phase gets a pre_ and a post_ phase added automatically.
+# So for [ "foo", "bar" ], the phases are executed in this order:
+# pre_foo
+# foo
+# post_foo
+# pre_bar
+# bar
+# post_bar
+#
+# Phases which are not listed here are not executed at all.
+available_phases = [ "unpack", "patch", "configure", "build", "fixup", "pack" ]
+
+[docker]
+# Images which can be used to build
+# images not listed here are automatically rejected
+images = [ "debian:bullseye" ]
+
+# List of docker endpoints
+[[docker.endpoints]]
+name = "testhostname"
+uri = "http://0.0.0.0:8095"
+endpoint_type = "http"
+
+
+[containers]
+# environment variables which are allowed during container start
+# This way, errors (typos) when passing environment to a build can be prevented
+allowed_env = [ "PATH" ]
+