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
IMHO it is accepted as best practice to not run processes in containers as root. It is a problem that is affecting many of prometheus' exporters and I'm not sure if this was discussed before.
It can be fixed pretty easily by adding two lines to the Dockerfile:
RUN adduser -D statsd-exporter
USER statsd-exporter
The text was updated successfully, but these errors were encountered:
IMHO it is accepted as best practice to not run processes in containers as root. It is a problem that is affecting many of prometheus' exporters and I'm not sure if this was discussed before.
It can be fixed pretty easily by adding two lines to the Dockerfile:
The text was updated successfully, but these errors were encountered: