summaryrefslogtreecommitdiff
path: root/troubleshooting.md
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2018-12-31 08:23:29 -0800
committerGitHub <noreply@github.com>2018-12-31 08:23:29 -0800
commit7438b7bd3afb9e5a0fc761fdc8532cd697f2187b (patch)
treee87a117fa185f8d7402cbecc06dfbeb75320c7b9 /troubleshooting.md
parent1aa55edda50df507c7fa8a2a50b67d7fd65a4ef5 (diff)
parentad36345fde0913a098b64d0c628f562134d1675b (diff)
downloadpodman-7438b7bd3afb9e5a0fc761fdc8532cd697f2187b.tar.gz
podman-7438b7bd3afb9e5a0fc761fdc8532cd697f2187b.tar.bz2
podman-7438b7bd3afb9e5a0fc761fdc8532cd697f2187b.zip
Merge pull request #2052 from rhatdan/sparse
Add troubleshooting for sparse files
Diffstat (limited to 'troubleshooting.md')
-rw-r--r--troubleshooting.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/troubleshooting.md b/troubleshooting.md
index 030f0af7e..4649cccb3 100644
--- a/troubleshooting.md
+++ b/troubleshooting.md
@@ -127,3 +127,15 @@ 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
+
+When the Dockerfile contains a command like RUN useradd -u 99999000 -g users newuser the build can hang.
+
+#### Symptom
+
+If you are using a useradd command within a Dockerfile with a large UID/GID, it will create a large sparse file `/var/log/lastlog`. This can cause the build to hang forever. Go language does not support sparse files correctly, which can lead to some huge files being created in your container image.
+
+#### Solution
+
+If the entry in the Dockerfile looked like: RUN useradd -u 99999000 -g users newuser then add the `--log-no-init` parameter to change it to: `RUN useradd --log-no-init -u 99999000 -g users newuser`. This option tells useradd to stop creating the lastlog file.