You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: website/blog/2022-11-17-develop-podman-using-codespaces.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ The challenges are to run a desktop tool (Podman Desktop) and running a containe
17
17
18
18
## Defining image of the container
19
19
20
-
The first thing is in the choice of the image for the container. It is possible to pick-up a default image and add some features but there is no existing feature for Podman at https://github.com/devcontainers/features/tree/main/src and most of the features are expecting to run on top of Debian/Ubuntu
20
+
The first thing is in the choice of the image for the container. It is possible to pick-up a default image and add some features but there is no existing feature for Podman at <https://github.com/devcontainers/features/tree/main/src> and most of the features are expecting to run on top of Debian/Ubuntu
21
21
22
22
If you are not interested in how to setup the image, jump to the [next section](#configure-the-devcontainer-using-devcontainerjson).
Copy file name to clipboardexpand all lines: website/blog/2022-12-01-release-0.10-blog.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ For most users on Linux, there is no tray icon support. In this situation, when
99
99
- Fixed use of the full height of the screen when displaying log in the details of a container. ([#946](https://github.com/containers/podman-desktop/discussions/946))
100
100
- Fixed First start of Podman Desktop on flatpak was not seeing the podman engine ([#860](https://github.com/containers/podman-desktop/pull/860))
101
101
102
-
## Community Thank You!
102
+
## Community Thank You
103
103
104
104
🎉 We’d like to say a big thank you to everyone who helped to make Podman Desktop 0.10 even better:
Copy file name to clipboardexpand all lines: website/blog/2023-01-18-release-0.11.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -209,7 +209,7 @@ Several of other improvements have been made to the documentation and the websit
209
209
- Fixed registry URL not aligned with header - [#1205](https://github.com/containers/podman-desktop/pull/1205)
210
210
- Moved SVGs to reusable components - [#1211](https://github.com/containers/podman-desktop/pull/1211)
211
211
212
-
**Extensions API has also been improved in this new release:**
212
+
**Extensions API has also been improved in this new release:**
213
213
214
214
- (extension-api): Allows to register a factory for kubernetes connection objects (like for container connections) - [#1040](https://github.com/containers/podman-desktop/pull/1040)
215
215
- (extension-api): List or inspect containers, be notified on events - [#1041](https://github.com/containers/podman-desktop/pull/1041)
@@ -223,7 +223,7 @@ Several of other improvements have been made to the documentation and the websit
223
223
224
224
---
225
225
226
-
## Community Thank You!
226
+
## Community Thank You
227
227
228
228
🎉 We’d like to say a big thank you to everyone who helped to make Podman Desktop 0.11 even better:
Copy file name to clipboardexpand all lines: website/docs/troubleshooting.md
+28-43
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ The tool connects to Podman using the socket on the host on macOS and on a named
16
16
This is available only on Podman 4.0.2+
17
17
So, please check your version and update.
18
18
19
-
On Windows, the named pipe is `//./pipe/docker_engine` when Docker Desktop is not installed. It will be solved by https://github.com/containers/podman/issues/13502 / https://github.com/containers/podman/pull/13655. During that time, you may start Docker Desktop so the named pipe is the one expected.
19
+
On Windows, the named pipe is `//./pipe/docker_engine` when Docker Desktop is not installed. It will be solved by <https://github.com/containers/podman/issues/13502> / <https://github.com/containers/podman/pull/13655>. During that time, you might start Docker Desktop so the named pipe is the one expected.
20
20
21
21
#### Check connection
22
22
@@ -50,17 +50,17 @@ Twitter: @Podman_io
50
50
51
51
### Unable to locate Podman Engine
52
52
53
-
#### Issue:
53
+
#### Issue
54
54
55
55
Despite having Podman Engine installed, you may receive an error as follows -
56
56
`Error: No such keg: /usr/local/Cellar/podman`
57
57
or any similar error denoting that Podman Engine does not exist.
58
58
59
-
#### Explanation:
59
+
#### Explanation
60
60
61
61
The Podman Installer and Homebrew use different locations to store the Podman Engine files in the file system. For example, Podman Installer installs Podman Engine in the path `/opt/podman` whereas Homebrew uses the path `/usr/local`for macOS Intel, `/opt/homebrew`for Apple Silicon and `/home/linuxbrew/.linuxbrew`for Linux.
62
62
63
-
#### Solution:
63
+
#### Solution
64
64
65
65
To check where exactly is your Podman Engine installed, run the command-
66
66
@@ -88,64 +88,49 @@ You can now proceed for a fresh installation of Podman Desktop
88
88
89
89
### Unable to see information about active containers
90
90
91
-
#### Issue:
91
+
#### Issue
92
92
93
93
In this scenario, the screen may be displaying "No Containers" as shown below despite active containers runnning in the background.
94
94

95
95
96
-
#### Solution:
96
+
#### Solution
97
97
98
98
There are three ways to work this out.
99
99
100
100
1. To solve this issue, open the Terminal and run the following commands-
101
101
102
-
```sh
103
-
podman machine stop
104
-
```
105
-
106
-
and then,
107
-
108
-
```sh
109
-
podman machine start
110
-
```
111
-
112
-
2. If this does not work for you, you may proceed with the following commands-
113
-
114
-
```sh
115
-
podman machine rm
116
-
```
102
+
```shell-session
103
+
podman machine stop
104
+
podman machine start
105
+
```
117
106
118
-
and then,
107
+
2. If this does not work for you, you might proceed with the following commands-
119
108
120
-
```sh
121
-
podman machine init
122
-
```
109
+
```shell-session
110
+
$ podman machine rm
111
+
$ podman machine init
112
+
```
123
113
124
114
3. If both of the abovementioned steps don't work for you, run the following commands-
125
115
126
-
```sh
127
-
rm -rf ~/.local/share/containers/podman
128
-
```
129
-
130
-
and then,
131
-
132
-
```sh
133
-
rm -rf ~/.config/containers/
134
-
```
116
+
```shell-session
117
+
$ rm -rf ~/.local/share/containers/podman
118
+
$ rm -rf ~/.config/containers/
119
+
```
135
120
136
-
After this, you can start off again by initializing a new Podman Machine and loading up the containers.
121
+
After this, you can start off again by initializing a new Podman Machine and loading up the containers.
137
122
138
123
### Unable to set custom binary path for Podman on macOS
139
124
140
-
#### Issue:
125
+
#### Issue
141
126
142
127
When setting a custom binary path (under Preferences -> Custom binary path), Podman is unable to find `gvproxy` and `podman-mac-helper`:
143
128
144
129
```sh
145
130
Error: unable to start host networking: "could not find \"gvproxy\" in one of [/usr/local/opt/podman/libexec /opt/homebrew/bin /opt/homebrew/opt/podman/libexec /usr/local/bin /usr/local/libexec/podman /usr/local/lib/podman /usr/libexec/podman /usr/lib/podman $BINDIR/../libexec/podman]. To resolve this error, set the helper_binaries_dir key in the `[engine]` section of containers.conf to the directory containing your helper binaries."
146
131
```
147
132
148
-
#### Solution:
133
+
#### Solution
149
134
150
135
1. Download `gvproxy` from the [gvisor-tap-vsock release page](https://github.com/containers/gvisor-tap-vsock/releases).
151
136
2. Build the `podman-mac-helper` from the source code on the [Podman GitHub page](https://github.com/containers/podman/tree/main/cmd/podman-mac-helper).
0 commit comments