-
Notifications
You must be signed in to change notification settings - Fork 39
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
Dockerize #97
Dockerize #97
Conversation
Well, in the interest of shipping more quickly, one could mount a volume at the container's |
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.
Went ahead and set this up for you by adding a configuration directive to [logger]
called docker_logging
I also implemented something else you might want to use for this before we merge. All configuration directives should now abide/be overridden by matching environment variables, example:
# [logger]
# docker_logging = true
HELLPOT_LOGGER_DOCKER_LOGGING=1 # "true" is also acceptable
# [http]
# bind_addr = "0.0.0.0"
HELLPOT_HTTP_BIND_ADDR="0.0.0.0"
you'll need to sign your commit for sure either way thanks for the pr |
Works for me! I'll wipe the TODO and push a signed commit. |
appreciate you, cuzzin |
/release tag=v0.4.0 |
I'm leaving it in draft mode because I'd like to fix the logger (it should output to stdout and only stdout), but I don't yet have the Go skill for doing that.
Closes #53.