Skip to content

Commit

Permalink
Merge pull request #176 from hubmapconsortium/development
Browse files Browse the repository at this point in the history
Release 1.2.0
  • Loading branch information
jpuerto-psc authored Sep 18, 2024
2 parents db05fba + 926cd65 commit 6781a9e
Show file tree
Hide file tree
Showing 14 changed files with 1,380 additions and 15 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
venv/
.envrc

*.pyc
__pycache__/
Expand All @@ -22,4 +23,5 @@ db.sqlite3
/src/tests/test_django_config.json
/docker/db_dir/
/docker/redis_dir/
/docker/docker-compose.yml
/docker/docker-compose.yml
/docker/grafana_dir/provisioning/datasources/datasource.yml
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.2.0
8 changes: 8 additions & 0 deletions docker/example-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ services:
environment:
- POSTGRES_PASSWORD=blank
- POSTGRES_USER=blank
- GRAFANA_PASSWORD=blank
- GRAFANA_USER=blank
depends_on:
- redis
- postgres
grafana:
image: grafana/grafana
build:
context: ./grafana_dir
ports:
- "3000:3000"
13 changes: 13 additions & 0 deletions docker/grafana_dir/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM grafana/grafana
# Disable Login form or not
# ENV GF_AUTH_DISABLE_LOGIN_FORM="true"
# # Allow anonymous authentication or not
# ENV GF_AUTH_ANONYMOUS_ENABLED="true"
# # Role of anonymous user
# ENV GF_AUTH_ANONYMOUS_ORG_ROLE="Admin"
ENV GF_DATABASE_SSL_MODE="disable"
ENV GF_SERVER_PROTOCOL="https"
ENV GF_DASHBOARDS_DEFAULT_HOME_DASHBOARD_PATH="/etc/grafana/dashboards/default.json"

ADD ./provisioning /etc/grafana/provisioning
ADD ./dashboards /etc/grafana/dashboards
Loading

0 comments on commit 6781a9e

Please sign in to comment.