chirpstack / chirpstack-gateway-bridge

ChirpStack Gateway Bridge abstracts Packet Forwarder protocols into Protobuf or JSON over MQTT.
https://www.chirpstack.io
MIT License
423 stars 272 forks source link

don't run as root #185

Closed JohnRoesler closed 3 years ago

JohnRoesler commented 3 years ago

It's a good practice to avoid running docker containers with root access

I currently have the app server deployed with a wrapping docker container performing the same

FROM chirpstack/chirpstack-gateway-bridge:3.9.2
USER nobody:nogroup
ENTRYPOINT ["/usr/bin/chirpstack-gateway-bridge"]