Skip to content

Commit

Permalink
fix: update docker compose.
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Mehr committed Mar 21, 2024
1 parent 1fe667b commit ed9017f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"NAME": os.environ.get("POSTGRES_DB", "postgres"),
"USER": os.environ.get("POSTGRES_USER", "postgres"),
"PASSWORD": os.environ.get("POSTGRES_PASSWORD", "postgres"),
"HOST": "0.0.0.0", # Name of the service in docker-compose
"HOST": os.environ.get("POSTGRES_HOST", "0.0.0.0"), # Name of the service in docker-compose
"PORT": "5432",
}
}
Expand Down

0 comments on commit ed9017f

Please sign in to comment.