diff options
author | TomSweeneyRedHat <tsweeney@redhat.com> | 2019-01-01 11:36:38 -0500 |
---|---|---|
committer | TomSweeneyRedHat <tsweeney@redhat.com> | 2019-01-02 14:14:50 -0500 |
commit | a25b707fdb4d33cec3de93822f978cd9e390c12d (patch) | |
tree | 379569716ac1ee462713bf04d67f0a0a9c950732 /troubleshooting.md | |
parent | a634d5559f3021ff117e6dc0e4ca879c434f11ba (diff) | |
download | podman-a25b707fdb4d33cec3de93822f978cd9e390c12d.tar.gz podman-a25b707fdb4d33cec3de93822f978cd9e390c12d.tar.bz2 podman-a25b707fdb4d33cec3de93822f978cd9e390c12d.zip |
Touch up some troubleshooting nits
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Diffstat (limited to 'troubleshooting.md')
-rw-r--r-- | troubleshooting.md | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/troubleshooting.md b/troubleshooting.md index 4649cccb3..561562193 100644 --- a/troubleshooting.md +++ b/troubleshooting.md @@ -86,6 +86,9 @@ could not get runtime: database run root /run/user/1000/run does not match our r #### Solution +This problem has been fixed in Podman release 0.12.1 and it is recommended +to upgrade to that version. If that is not possible use the following procedure. + To work around the new default path, we can manually set the path Podman is expecting in a configuration file. @@ -101,7 +104,7 @@ the first path in the error message Podman gave (in this case, `/run/user/1000/run`). --- -### 4) rootless containers cannot ping hosts +### 5) rootless containers cannot ping hosts When using the ping command from a non-root container, the command may fail because of a lack of privileges. @@ -128,9 +131,10 @@ To change its value you can use something like: `sysctl -w To make the change persistent, you'll need to add a file in `/etc/sysctl.d` that contains `net.ipv4.ping_group_range=0 $MAX_UID`. -### 5) Build hangs when the Dockerfile contains the useradd command +--- +### 6) Build hangs when the Dockerfile contains the useradd command -When the Dockerfile contains a command like RUN useradd -u 99999000 -g users newuser the build can hang. +When the Dockerfile contains a command like `RUN useradd -u 99999000 -g users newuser` the build can hang. #### Symptom |