Feature: docker support#10
Open
Bound3R wants to merge 4 commits intoSnowingFox:masterfrom
Open
Conversation
Contributor
Author
|
export const GET = async (request: NextRequest) => { ... }It can likely be fixed by adjusting the cron job to use The README might also need to be updated to reflect this. |
Contributor
Author
Fixed in the Docker cron setup, but I think we should update the README as well. |
183864f to
294d6ca
Compare
294d6ca to
c6e471b
Compare
ZhonFortune
approved these changes
Oct 28, 2025
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.
This PR adds full Docker support to open-nof1.ai for easier local setup and development.
Changes
.dockerignoreDockerfilefor the main Next.js appDockerfile.cronfor cron workerdocker-compose.ymlwith services:db(PostgreSQL 16)app(Next.js + Bun)cron(scheduled jobs)crontabfor cron containerREADME.mdwith Docker usage instructionsMotivation
Running the stack locally with Bun and Postgres required multiple manual steps.
With Docker Compose, the entire environment (app, DB, and cron) can be started with one command.
How to test
.envfile with required variables.