Feature: Add comprehensive Docker development setup - #17
Draft
vishalm wants to merge 2 commits into
Draft
Conversation
- Add Dockerfile.local for development with hot reload - Add docker-compose.local.yml with bind mounts and DNS configuration - Add entrypoint.sh for environment variable loading - Add .dockerignore to optimize build context - Update README.md with Docker development workflow Features: - Hot reload development in Docker container - DNS configuration (8.8.8.8, 8.8.4.4) for external API access - Environment variable loading from .env.local - Port 3000 exposed for local development - Source code mounted for real-time changes - Bridge networking for optimal connectivity Usage: - docker-compose -f docker-compose.local.yml up --build - Visit http://localhost:3000 for development Resolves network connectivity issues with OpenAI API calls in containerized environment.
Member
|
Thanks for sharing this! It would be great to have a Dockerfile example in this repo in the future, but this one seems a bit more complex than what we’d like to include here. If these changes work best for you, please add the changes to your own fork and use it as your internal template. |
seratch
marked this pull request as draft
October 11, 2025 02:33
Author
|
I can add simple dockerfile, this is just to make users life simple to run
app in dockers on local
…On Sat, 11 Oct 2025 at 06:33 Kazuhiro Sera ***@***.***> wrote:
*seratch* left a comment (openai/openai-chatkit-starter-app#17)
<#17 (comment)>
Thanks for sharing this! It would be great to have a Dockerfile example in
this repo in the future, but this one seems a bit more complex than what
we’d like to include here. If these changes work best for you, please add
the changes to your own fork and use it as your internal template.
—
Reply to this email directly, view it on GitHub
<#17 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AALLMIGT5EYEF6ESLQUXSJT3XBUAVAVCNFSM6AAAAACI4OZ3UGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTGOJSG44DMMZYGI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
|
help |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Features:
Usage:
Resolves network connectivity issues with OpenAI API calls in containerized environment.