summaryrefslogtreecommitdiffstats
path: root/examples/packages/example_1/config.toml
blob: dc56f49cd02195993c4ca6fa1f50b26c368503d0 (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_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" ]