summaryrefslogtreecommitdiffstats
path: root/examples/packages/example_1/config.toml
blob: db34ede241b1e24f1fc6ea7f6b7ce8ad062386a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Configuration file for BUTIDO for this repository

# repository of package definitions
repository = "/tmp/butido_example_1"

# Phases which can be configured in the packages
available_phases = [ "unpack", "build", "install", "package" ]

[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          = "example host name"
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" ]