-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
✨ feat(pihole-unbound): Add volume and expose Unbound port #21
base: main
Are you sure you want to change the base?
Conversation
This commit adds a volume for the Unbound configuration and exposes the Unbound DNS port (5353/tcp and 5353/udp) in the Dockerfile. It also improves the healthcheck by reducing the interval, adding a start period, and increasing the number of retries. The changes in the `unbound_run_script` file simplify the script by removing unnecessary checks and using `exec` to run Unbound, which allows for proper signal handling and process management.
WalkthroughThe changes include modifications to the Dockerfile and a Bash script for the Pi-hole Unbound integration. The Dockerfile consolidates package installation and cleanup, introduces a volume for configuration persistence, exposes DNS service ports, and updates the health check parameters. The Bash script simplifies the setup by unconditionally creating log directories and files, and refactors the Unbound daemon startup process for improved signal handling. Changes
Poem
Tip Announcements
Recent review detailsConfiguration used: CodeRabbit UI Files selected for processing (2)
Additional comments not posted (7)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
This commit adds a volume for the Unbound configuration and exposes the Unbound DNS port (5353/tcp and 5353/udp) in the Dockerfile. It also improves the healthcheck by reducing the interval, adding a start period, and increasing the number of retries.
The changes in the
unbound_run_script
file simplify the script by removing unnecessary checks and usingexec
to run Unbound, which allows for proper signal handling and process management.Summary by CodeRabbit
New Features
Improvements
Bug Fixes