Skip to content

Commit

Permalink
gitleaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Emterry committed Dec 5, 2024
1 parent 6efcde5 commit e7cedf3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
image: "postgres:13.3"
environment:
POSTGRES_DB: "controlpanel"
POSTGRES_PASSWORD: "password"
POSTGRES_PASSWORD: "password" # gitleaks:allow
POSTGRES_USER: "controlpanel"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
Expand All @@ -14,7 +14,7 @@ services:
redis:
image: "redis"
environment:
REDIS_PASSWORD: "controlpanel"
REDIS_PASSWORD: "controlpanel" # gitleaks:allow
command: sh -c "exec redis-server --requirepass \"$${REDIS_PASSWORD}\""

migration:
Expand All @@ -25,7 +25,7 @@ services:
environment:
DB_HOST: "db"
DB_NAME: "controlpanel"
DB_PASSWORD: "password"
DB_PASSWORD: "password" # gitleaks:allow
DB_PORT: 5432
DB_USER: "controlpanel"
DEBUG: "True"
Expand All @@ -47,15 +47,15 @@ services:
environment:
DB_HOST: "db"
DB_NAME: controlpanel
DB_PASSWORD: password
DB_PASSWORD: password
DB_PORT: 5432
DB_USER: controlpanel
DJANGO_SETTINGS_MODULE: ${DJANGO_SETTINGS_MODULE}
ENV: "dev"
OIDC_DOMAIN: dev-analytics-moj.eu.auth0.com
PYTHONUNBUFFERED: "1"
REDIS_HOST: "redis"
REDIS_PASSWORD: "controlpanel"
REDIS_PASSWORD: "controlpanel" # gitleaks:allow
SECRET_KEY: "1234567890"
SLACK_API_TOKEN: "dummy"
defaultRegion: eu-west-1
Expand Down Expand Up @@ -91,7 +91,7 @@ services:
AWS_SESSION_TOKEN: ${AWS_SESSION_TOKEN}
DB_HOST: "db"
DB_NAME: controlpanel
DB_PASSWORD: password
DB_PASSWORD: password
DB_PORT: 5432
DB_USER: controlpanel
DEBUG: "True"
Expand All @@ -114,7 +114,7 @@ services:
OIDC_RP_SIGN_ALGO: "RS256"
PYTHONUNBUFFERED: "1"
REDIS_HOST: "redis"
REDIS_PASSWORD: "controlpanel"
REDIS_PASSWORD: "controlpanel" # gitleaks:allow
RSTUDIO_AUTH_CLIENT_ID: ${RSTUDIO_AUTH_CLIENT_ID}
RSTUDIO_AUTH_CLIENT_SECRET: ${RSTUDIO_AUTH_CLIENT_SECRET}
OIDC_EKS_PROVIDER: ${OIDC_EKS_PROVIDER}
Expand Down

0 comments on commit e7cedf3

Please sign in to comment.