Skip to content

Commit

Permalink
Updated PostgreSQL password in docker-compose.yml to match README.
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasmcnulty authored Feb 27, 2022
1 parent 462e336 commit cc97564
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
- SQL_ENGINE=django.db.backends.postgresql
- SQL_DATABASE=djangoproject
- SQL_USER=djangoproject
- SQL_PASSWORD=djangoproject
- SQL_PASSWORD=secret
- SQL_HOST=db
- SQL_PORT=5432
depends_on:
Expand All @@ -26,5 +26,5 @@ services:
image: postgres:11.2-alpine
environment:
- POSTGRES_USER=djangoproject
- POSTGRES_PASSWORD=djangoproject
- POSTGRES_PASSWORD=secret
- POSTGRES_DB=djangoproject

0 comments on commit cc97564

Please sign in to comment.