mirror of
https://github.com/grafana/grafana.git
synced 2025-08-03 05:08:36 +08:00

* build(webpack): set publicpath and process urls to resolve assets correctly * build(webpack): add back --progress to build * Add local cdn (cherry picked from commit 7a19523fa476fd5ff2d7669d116f5be462b100f5) * chore(devenv): fix local_cdn path in ngnix conf * chore(codeowners): add frontend-ops as owners of local_cdn docker block --------- Co-authored-by: Andreas Christou <andreas.christou@grafana.com>
11 lines
229 B
YAML
11 lines
229 B
YAML
version: '2'
|
|
|
|
services:
|
|
grafana_local_cdn:
|
|
image: nginx:alpine
|
|
container_name: grafana_local_cdn
|
|
ports:
|
|
- "8080:80"
|
|
volumes:
|
|
- ../../public:/data
|
|
- ./default.conf:/etc/nginx/conf.d/default.conf |