forked from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
51 changed files
with
1,027 additions
and
647 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Usa la imagen base de Grafana desde Docker Hub | ||
FROM grafana/grafana | ||
|
||
USER root | ||
|
||
RUN addgroup -S nonroot \ | ||
&& adduser -S nonroot -G nonroot | ||
|
||
RUN chown -R nonroot:nonroot ./ | ||
|
||
COPY provisioning ./provisioning | ||
|
||
USER nonroot |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Usa la imagen base de Prometheus desde Docker Hub | ||
FROM prom/prometheus | ||
|
||
USER root | ||
|
||
RUN addgroup -S nonroot \ | ||
&& adduser -S nonroot -G nonroot | ||
|
||
RUN chown -R nonroot:nonroot ./ | ||
|
||
COPY prometheus.yml ./ | ||
|
||
USER nonroot |
Oops, something went wrong.