-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.yml
More file actions
61 lines (51 loc) · 1 KB
/
default.yml
File metadata and controls
61 lines (51 loc) · 1 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Default Docker Build Configuration
# Basic configuration for standard Docker applications
docker:
# Build Configuration
dockerfile: "./Dockerfile"
context: "."
target: ""
# Platform Configuration
platforms: "linux/amd64"
multi_platform: false
# Registry Configuration
registry: "ghcr.io"
auto_tags: true
latest_tag: true
push_on_pr: false
# Build Arguments (can be overridden)
build_args:
BUILDTIME: ""
VERSION: ""
# Caching
cache:
enabled: true
mode: "max"
registry: ""
# Security Configuration
security:
scan_enabled: true
scanner: "trivy"
fail_on: "CRITICAL"
ignore_unfixed: false
sign_image: false
generate_sbom: false
# Testing
testing:
pre_build: false
post_build: false
test_command: ""
# Performance
performance:
builder_driver: "docker-container"
build_timeout: 30
parallel_builds: false
# Labels (OCI standard)
labels:
add_git_labels: true
custom_labels: {}
# Deployment
deployment:
enabled: false
environment: "staging"
command: ""