Compare commits
2 commits
4cb106b63e
...
8bb78bfd3a
Author | SHA1 | Date | |
---|---|---|---|
8bb78bfd3a | |||
e82eeef365 |
2 changed files with 12 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
[ -z "$1" ] && exit 1
|
||||
|
||||
docker build $1 -t gitea.angry.im/petercxy/$1:latest
|
||||
|
|
10
grafana/Dockerfile
Normal file
10
grafana/Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
|||
FROM grafana/grafana:9.2.0
|
||||
|
||||
USER root
|
||||
|
||||
# Add cap_net_bind_service to grafana-server, and set default port to 80
|
||||
RUN apk add --no-cache libcap-utils --repository=http://dl-cdn.alpinelinux.org/alpine/edge/main \
|
||||
&& setcap cap_net_bind_service=+ep ${GF_PATHS_HOME}/bin/grafana-server \
|
||||
&& sed -i "s/;http_port = 3000/http_port = 80/" ${GF_PATHS_CONFIG}
|
||||
|
||||
USER grafana
|
Loading…
Add table
Reference in a new issue