youssefbennour commented on issue #13076: URL: https://github.com/apache/trafficserver/issues/13076#issuecomment-4237714995
Solved! I had a custom Docker image where I didn’t specify a user before running the `CMD ["traffic_server"]` command. I just had to switch to the `nobody` user before starting the server: ```Dockerfile FROM trafficserver/trafficserver:10.1.0 . . . USER nobody CMD ["traffic_server"] ``` Honestly, I have no idea why this didn’t cause any issues when running with Docker Compose, but failed with HashiCorp Nomad’s Docker driver. I’ll leave this here in case anyone else runs into the same issue. Also, if you happen to know why this happened, I’d love to learn more. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
