-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Add Dokploy deployment instructions to documentation #6535
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
Open
drizzer
wants to merge
1
commit into
TanStack:main
Choose a base branch
from
drizzer:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+51
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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.
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.
🧩 Analysis chain
🌐 Web query:
latest stable Bun Docker image version oven/bun 2025💡 Result:
The latest stable
oven/bunDocker image version released in 2025 is Bun1.3.5(released December 17, 2025). [1]Use (stable release tags):
oven/bun:1.3.5(exact)oven/bun:1.3/oven/bun:1/oven/bun:latest(moving stable tags)oven/bun:1.3.5-debian[2]Not stable:
oven/bun:canary(nightly/bleeding-edge). [3]Sources:
[1] https://bun.com/blog/bun-v1.3.5
[2] https://docker.aityp.com/image/docker.io/oven/bun%3A1.3.5-debian
[3] https://hub.docker.com/r/oven/bun
🌐 Web query:
TanStack Start Bun version requirements production deployment💡 Result:
For production deployment of a TanStack Start app on Bun, the current official guidance boils down to:
reactandreact-dom>= 19.0.0). If you’re on React 18, use the Node.js deployment path instead. [1]"bunVersion": "1.x"(or configure Nitro/Vercel runtime asbun1.x). [2]bun run .output/server/index.mjs), and you may need Nitro’spreset: "bun"depending on how you build/invoke Nitro. [1][2]Sources: TanStack Start “Hosting” docs (React) [1] and Bun’s “Use TanStack Start with Bun” deployment guide [2].
🌐 Web query:
Dokploy Bun Docker compatibility requirements💡 Result:
Dokploy doesn’t impose Bun-specific Docker constraints beyond “it must be a containerized app”: Dokploy can deploy apps via your own Dockerfile, Docker Compose, or auto-build (Nixpacks/Heroku buildpacks). (dokploy.com)
For Bun in Docker, the practical compatibility requirements are mainly about the base image libc/OS choice:
glibcimages (e.g.,FROM oven/bun:latestor Debian-based equivalents).glibcgenerally has broader compatibility with native dependencies thanmusl(Alpine). (docs.docker.com)musl): Bun supports Alpine/musl builds (andoven/bun:alpine). This is fine for many apps, butmuslcan be less compatible (and sometimes slower) thanglibc, especially when native addons/binaries are involved. (bun.com)bcrypt), or choose aglibc-based image instead. (hub.docker.com)If you tell me (1) whether you deploy via Dockerfile vs Nixpacks, and (2) whether you depend on native modules (bcrypt, sharp, prisma engines, etc.), I can suggest the safest Bun base image and a minimal Dockerfile for Dokploy.
Citations:
🏁 Script executed:
Repository: TanStack/router
Length of output: 1521
Update Bun image to latest stable version 1.3.5 and consider glibc variant for better compatibility.
The pinned
oven/bun:1.3.2-alpineis outdated; the latest stable version is1.3.5(released December 17, 2025). Additionally, the Alpine variant usesmuslwhich has less compatibility with native dependencies compared to glibc-based images. Consider updating tooven/bun:1.3.5oroven/bun:1.3.5-debianfor broader compatibility, particularly if your TanStack Start app uses native modules likebcrypt,sharp, or Prisma engines.🤖 Prompt for AI Agents