-
Notifications
You must be signed in to change notification settings - Fork 881
chore: use docker host in docker-compose #1592
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
Conversation
@@ -1,12 +1,15 @@ | |||
version: "3.9" | |||
services: | |||
coder: | |||
image: ghcr.io/coder/coder:v${CODER_VERSION:-0.5.6}-${ARCH:-amd64} | |||
image: ghcr.io/coder/coder:v${CODER_VERSION:-0.5.10}-${ARCH:-amd64} |
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 wish dependabot/dependabot-core#390 existed. Maybe we use Renovate or another tool?
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 we've even got 0.5.11
right now!
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.
it seems the release was deleted: https://github.com/coder/coder/releases/
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.
Fair point then!
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'm completely happy with this approach instead.
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.
Superb! 🎉
This PR adds support for passing through
CODER_ACCESS_URL
in docker-compose, and also defaults to the docker host.This is somewhat a revert of #1507, but it was also its initial implementation. I think this is an acceptable standard for the following reasons:
Related discussions: #1545, #1528, #1345, #1545