We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c2bbc3 commit 14424eeCopy full SHA for 14424ee
Dockerfile
@@ -174,7 +174,13 @@ ENV XC_IMAGE_NAME stash-origin
174
# Files and dirs should be readable to UID/GID 10940:10940 or the world
175
ENV XC_FIX_DIR_OWNERS no
176
177
-RUN yum install -y stash-origin && \
+# Add support for SSSD (SOFTWARE-5464)
178
+# sssd UID must match between the origin and SSSD sidecar containers
179
+RUN groupadd -r -g 996 sssd \
180
+ && useradd -r -g sssd -u 996 -d / -s /usr/sbin/nologin -c "System user for sssd" sssd
181
+
182
+RUN yum install -y stash-origin \
183
+ sssd && \
184
yum clean all --enablerepo=* && rm -rf /var/cache/yum/
185
186
COPY stash-origin/cron.d/* /etc/cron.d/
0 commit comments