-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Troubleshooting Guide | ||
|
||
## Pushing to local registry | ||
|
||
If you are using `docker/setup-buildx-action@v2` and would like to use the internal registry, | ||
you need to make sure that the docker network is bound to the host, otherwise you will not be able to push to the local registry. | ||
|
||
Example: | ||
|
||
``` yaml | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
with: | ||
driver-opts: | | ||
network=host | ||
``` | ||
Alternatively, you can use `sudo microk8s ctr image import myimage.tar`. |