Serving static files for golang in docker-container using echo middleware
So. I have a stucture like this: app -api -templates -examples -html using echo like this e.Use(middleware.StaticWithConfig(middleware.StaticConfig{ Root: "examples/html", Browse: true, IgnoreBase: true, })) and it works perfect when I run it locally but when i put this in docker-container…