summaryrefslogtreecommitdiffstats
path: root/examples/packages/example_2/config.toml
blob: a461e467c649e83b5be4af878285856102b59ca9 (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 YABOS for this repository

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

# 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" ]