mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 18:42:29 +08:00
8 lines
116 B
Bash
Executable File
8 lines
116 B
Bash
Executable File
#!/bin/bash
|
|
|
|
_version="1.2.9"
|
|
_tag="grafana/build-container:${_version}"
|
|
|
|
docker build -t $_tag .
|
|
docker push $_tag
|