mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 15:52:28 +08:00

* wip * docker compose dev setup * commit new tilt stuff * move files into own dir * reset files back to main * use just one nginx container for both gateway and cdn * update proxy service name * make it all work when in subdir * rename more things * reset more changes * fix config * add makefile command, fix ws upgrade * add local check script * tidy * tidy up, comments, readyme * codeowners * change cdn host to localhost to avoid adding host.docker.internal to /etc/hosts * route POST /login to backend * Build nginx container with config baked in so it can be live_update-ed * fix headers
6 lines
213 B
Docker
6 lines
213 B
Docker
# Runtime stage - just a simple nginx to serve static files
|
|
# We bake the config into the image so we can live-update it with Tilt when it changes
|
|
FROM nginx:alpine
|
|
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|