-
Notifications
You must be signed in to change notification settings - Fork 14.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: document how docker-compose-image-tag requires -dev suffixed images #30144
Conversation
…ages Realized [here](#29999 (comment)) that `docker-compose-image-tag.yml` requires a -dev suffixed image to work as expected. Updating default TAG to latest-dev and related docs. Side mission: removing warning related to version key in docker-compose*.* that are not used/supported anymore
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.
I think this will clarify things for a lot of people! I have a few suggestions for clarity and to move from "docker-compose" to "docker compose" as in #30030
@@ -30,7 +30,6 @@ x-superset-volumes: | |||
- ./docker:/app/docker | |||
- superset_home:/app/superset_home | |||
|
|||
version: "3.7" |
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.
Nice touch to get rid of these!
pre-built images from docker-hub. For `docker-compose` to work along with the | ||
Postgres image it boots up, you'll want to point to a `-dev`-suffixed TAG, as in | ||
`export TAG=4.0.0-dev` or `export TAG=3.0.0-dev`, `latest-dev` being the default. | ||
That's because The `dev` builds happen to package the `psycopg2-binary` required to connect |
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.
That's because The `dev` builds happen to package the `psycopg2-binary` required to connect | |
That's because `dev` builds package the `psycopg2-binary` required to connect |
Co-authored-by: Sam Firke <[email protected]>
Co-authored-by: Sam Firke <[email protected]>
Co-authored-by: Sam Firke <[email protected]>
…ages (#30144) Co-authored-by: Sam Firke <[email protected]> (cherry picked from commit 34e240e)
Realized here that
docker-compose-image-tag.yml
requires a -dev suffixed image to work as expected. Updating default TAG to latest-dev and related docs.Side mission: removing warning related to version key in
docker-compose*.*
that are not used/supported anymore