Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The entrypoint already notes that
initdb
will create the three databases:postgres/docker-entrypoint.sh
Line 64 in 3884130
And the intent of this
"$POSTGRES_DB" != 'postgres'
is to not create an already created database (since postgresql doesn't have anIF NOT EXISTS
on create database), it might make more sense to key off the database name already existing? (just in caseinitdb
changes in the future)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😬 great point (and https://stackoverflow.com/a/18389184/433558 is depressing 😞)
So maybe something like this?
(Sorry it's not super obvious, but this will also need to be copied to every directory for the GitHub Actions to test it properly.)