1COMPOSER-CLI(1)                                                COMPOSER-CLI(1)
2
3
4

NAME

6       composer-cli-blueprints - Manage blueprints
7
8
9

SYNOPSIS

11       composer-cli blueprints ... [flags]
12
13
14

DESCRIPTION

16       Manage blueprints on the server
17
18
19       The full blueprint reference can be found here:
20         https://www.osbuild.org/guides/blueprint-reference/blueprint-refer
21       ence.html
22
23
24

OPTIONS

26       -h, --help[=false]      help for blueprints
27
28
29

OPTIONS INHERITED FROM PARENT COMMANDS

31       -a, --api=1      Server API Version to use
32
33
34       -j, --json[=false]      Output the raw JSON  response  instead  of  the
35       normal output
36
37
38       --log=""      Path to optional logfile
39
40
41       -s,  --socket="/run/weldr/api.socket"       Path to the server's socket
42       file
43
44
45       --test=0      Pass test mode to  compose.  1=Mock  compose  with  fail.
46       2=Mock compose with finished.
47
48
49       --timeout=240       Timeout  to  use for server communication. Set to 0
50       for no timeout
51
52
53

EXAMPLE

55                TOML blueprint for an image with tmux, a user, and a new group for the user:
56
57                  name = "student-image"
58                  description = "A base system with a student account"
59                  version = "0.0.1"
60
61                  [[packages]]
62                  name = "tmux"
63                  version = "*"
64
65                  [[customizations.user]]
66                  name = "bart"
67                  description = "Student account for Bart"
68                  groups = ["students"]
69                  password = "$6$CHO2$3rN8eviE2t50lmVyBYihTgVRHcaecmeCk31LeOUleVK/R/aeWVHVZDi26zAH.o0ywBKH9Tc0/wm7sW/q39uyd1"
70
71                  [[customizations.group]]
72                  name = "students"
73
74
75                TOML blueprint for an image with a custom filesystem:
76
77                  name = "custom-fs-image"
78                  description = "A base system with a custom filesystem"
79                  version = "0.0.1"
80
81                  [[packages]]
82                  name = "tmux"
83                  version = "*"
84
85                  [[customizations.filesystem]]
86                  mountpoint = "/"
87                  size = "2GiB"
88
89                  [[customizations.filesystem]]
90                  mountpoint = "/home"
91                  size = "5GiB"
92
93
94
95
96

SEE ALSO

98       composer-cli(1), composer-cli-blueprints-changes(1), composer-cli-blue‐
99       prints-delete(1),   composer-cli-blueprints-depsolve(1),  composer-cli-
100       blueprints-diff(1),  composer-cli-blueprints-freeze(1),   composer-cli-
101       blueprints-list(1), composer-cli-blueprints-push(1), composer-cli-blue‐
102       prints-save(1),   composer-cli-blueprints-show(1),   composer-cli-blue‐
103       prints-tag(1),    composer-cli-blueprints-undo(1),   composer-cli-blue‐
104       prints-workspace(1)
105
106
107

HISTORY

109       21-Jan-2023 Auto generated by spf13/cobra
110
111
112
113composer-cli                       Jan 2023                    COMPOSER-CLI(1)
Impressum