File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ Join `#buildkit` channel on [Docker Community Slack](https://dockr.ly/comm-slack
71
71
- [ Load balancing] ( #load-balancing )
72
72
- [ Containerizing BuildKit] ( #containerizing-buildkit )
73
73
- [ Podman] ( #podman )
74
+ - [ Nerdctl] ( #nerdctl )
74
75
- [ Kubernetes] ( #kubernetes )
75
76
- [ Daemonless] ( #daemonless )
76
77
- [ Opentracing support] ( #opentracing-support )
@@ -676,6 +677,16 @@ buildctl --addr=podman-container://buildkitd build --frontend dockerfile.v0 --lo
676
677
677
678
` sudo ` is not required.
678
679
680
+ ### Nerdctl
681
+ To connect to a BuildKit daemon running in a Nerdctl container, use ` nerdctl-container:// ` instead of ` docker-container:// ` .
682
+
683
+ ``` bash
684
+ nerdctl run -d --name buildkitd --privileged moby/buildkit:latest
685
+ buildctl --addr=nerdctl-container://buildkitd build --frontend dockerfile.v0 --local context=. --local dockerfile=. --output type=oci | nerdctl load
686
+ ```
687
+
688
+ ` sudo ` is not required.
689
+
679
690
### Kubernetes
680
691
681
692
For Kubernetes deployments, see [ ` examples/kubernetes ` ] ( ./examples/kubernetes ) .
You can’t perform that action at this time.
0 commit comments