-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Open
Conversation
karsumit94
karsumit94
approved these changes
Apr 26, 2026
karsumit94
commented
Apr 26, 2026
I came across this repo from an LinkedIn post and was wondering to to run it locally. While I was struggling to find a Dockerfile I was not able to find it. Thought of adding it but then looked at your PR!
rlenferink
commented
Jun 5, 2026
I was also looking for a containerized version of this software and stumbled upon this pull request. It was indeed as simple as running docker compose up --build.
This pull request actually offers two things:
- Building a container image using the
Dockerfileand preventing it to be bloated by using a proper.dockerignore - Providing an easy mechanism to run it with the
docker-compose.yml
Already having a container image that builds automatically with each commit and is automatically pushed as release with each official release is a huge win already. Where possibly an example of the docker-compose.yml can also be added to the README.md.
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.
Uh oh!
There was an error while loading. Please reload this page.
Summary
Dockerfileusingoven/bun:1.3.0-alpinethat installs dependencies, builds all workspace packages via Turbo, and serves the Next.js appdocker-compose.ymlfor a one-command start (docker compose up --build).dockerignoreto excludenode_modules, build artifacts, and local env files from the build contextUsage
The editor will be available at
http://localhost:3000.Optional env vars (e.g.
NEXT_PUBLIC_GOOGLE_MAPS_API_KEY) can be passed under theenvironmentkey indocker-compose.yml— the editor works without them.Test plan
docker compose up --buildcompletes without errorshttp://localhost:3000