mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
e894b19c1a
* 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 7a19523fa4
)
* 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 |