diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index da8a210d..677bbfc3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,4 +1,4 @@ -name: Build Docs & Website Docker images +name: Build Docker images on: push: diff --git a/apps/dokploy/.env.example b/apps/dokploy/.env.example index 9cf77abf..ba57ec7b 100644 --- a/apps/dokploy/.env.example +++ b/apps/dokploy/.env.example @@ -1,5 +1,3 @@ DATABASE_URL="postgres://dokploy:amukds4wi9001583845717ad2@localhost:5432/dokploy" PORT=3000 -NODE_ENV=development -IS_CLOUD="true" -SERVER_URL="http://localhost:4000" \ No newline at end of file +NODE_ENV=development \ No newline at end of file diff --git a/apps/dokploy/server/server.ts b/apps/dokploy/server/server.ts index 8ab7d421..0c29975f 100644 --- a/apps/dokploy/server/server.ts +++ b/apps/dokploy/server/server.ts @@ -25,7 +25,7 @@ import { setupTerminalWebSocketServer, } from "./wss/terminal"; -config({ path: ".env" }); +config({ path: ".env", override: true }); const PORT = Number.parseInt(process.env.PORT || "3000", 10); const dev = process.env.NODE_ENV !== "production"; const app = next({ dev });