File tree Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ concurrency:
14
14
group : " pages"
15
15
cancel-in-progress : false
16
16
17
+ # To build the docs locally you can also do e.g.:
18
+ # cargo install mdbook-mermaid
19
+ # cd docs
20
+ # mdbook-mermaid install
21
+ # mdbook serve
22
+
17
23
jobs :
18
24
build :
19
25
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 44
44
- [ Filesystem: sysroot] ( filesystem-sysroot.md )
45
45
- [ Container storage] ( filesystem-storage.md )
46
46
47
+ # Experimental features
48
+
49
+ - [ bootc image] ( experimental-bootc-image.md )
50
+
47
51
# More information
48
52
49
53
- [ Package manager integration] ( package-managers.md )
Original file line number Diff line number Diff line change
1
+ # bootc image
2
+
3
+ Experimental features are subject to change or removal. Please
4
+ do provide feedback on them.
5
+
6
+ Tracking issue: < https://github.com/containers/bootc/issues/690 >
7
+
8
+ ## Using ` bootc image copy-to-storage `
9
+
10
+ This experimental command is intended to aid in [ booting local builds] ( booting-local-builds.md ) .
11
+
12
+ Invoking this command will default to copying the booted container image into the ` containers-storage: `
13
+ area as used by e.g. ` podman ` , under the image tag ` localhost/bootc ` by default. It can
14
+ then be managed independently; used as a base image, pushed to a registry, etc.
15
+
16
+ Run ` bootc image copy-to-storage --help ` for more options.
17
+
18
+ Example workflow:
19
+
20
+ ```
21
+ $ bootc image copy-to-storage
22
+ $ cat Containerfile
23
+ FROM localhost/bootc
24
+ ...
25
+ $ podman build -t localhost/bootc-custom .
26
+ $ bootc switch --transport containers-storage localhost/bootc-custom
27
+ ```
28
+
You can’t perform that action at this time.
0 commit comments