Mauricio Siu
6ba35057ac
fix: update getServiceImageDigest to retrieve image digest more reliably
...
- Refactored the getServiceImageDigest function to use a more robust command for fetching the Docker service image digest, improving accuracy.
- Added console logging for the current digest to aid in debugging and monitoring.
2025-11-18 10:09:02 -06:00
Mauricio Siu
ba5e7e2026
fix: improve error handling in getUpdateData function
...
- Added error logging to the getUpdateData function to capture and display errors when retrieving the current service image digest, enhancing debugging capabilities.
2025-11-18 00:26:38 -06:00
Mauricio Siu
e9b4245625
feat: enhance environment service to include server details
...
- Added server information retrieval for applications and various database services in the environment service.
- Updated the dashboard to display server names alongside services, allowing for better identification and filtering of services by server.
- Introduced a dropdown filter for selecting services based on server, improving user experience in managing environments.
2025-11-15 23:51:34 -06:00
Mauricio Siu
69b7777db4
chore: update node-os-utils to version 2.0.1 and refactor lodash imports
...
- Upgraded `node-os-utils` from version 1.3.7 to 2.0.1 across multiple package.json files.
- Removed deprecated `@types/node-os-utils` dependency.
- Refactored lodash imports to use a single import statement for consistency.
- Enhanced Docker stats monitoring by integrating new features from `node-os-utils` version 2.0.1.
2025-11-15 00:28:44 -06:00
Mauricio Siu
61d9ae397a
feat: add git commit info extraction to deployment logic
...
- Integrated `getGitCommitInfo` function to retrieve the latest commit message and hash for applications and compose services.
- Updated deployment logic to conditionally include commit information in deployment updates, enhancing traceability.
- Refactored import statements for better organization and clarity.
2025-11-14 22:27:38 -06:00
Mauricio Siu
d549aa6a62
feat: add last deployment date to services and update sorting logic
...
- Introduced `lastDeployDate` property to track the most recent deployment for applications and compose services.
- Updated the `extractServicesFromEnvironment` function to calculate and include the last deployment date.
- Modified sorting logic to allow sorting by last deployment date, enhancing the user experience on the environment dashboard.
- Adjusted local storage default sort preference to prioritize last deployment date.
2025-11-13 22:35:16 -06:00
Mauricio Siu
26ff4075df
Merge branch 'canary' into unify-deployment-logic
2025-11-13 21:06:00 -06:00
HarikrishnanD
c459997453
fix(traefik): validate port 8080 before enabling dashboard
2025-11-13 11:52:06 +05:30
ChristoferMendes
334d9c91ef
Merge branch 'canary' of github.com:ChristoferMendes/dokploy into feature/add-custom-webhook-notification-provider
2025-11-11 09:11:38 -03:00
HarikrishnanD
b202974a7d
fix: add protocol prefix to invitation links
2025-11-11 11:34:10 +05:30
Mauricio Siu
b814bdc612
Refactor application and compose deployment logic: remove unused buildApplication function, streamline command logging for deployment, and enhance static command generation for improved maintainability and clarity in the codebase.
2025-11-09 11:13:39 -06:00
Mauricio Siu
a05b75fc67
Refactor deployment logic: remove unused remote preview deployment function, streamline deployment commands, and enhance error handling for Docker image pulling. Update build command generation for Docker source type.
2025-11-09 03:24:13 -06:00
Mauricio Siu
5ac32f9f24
Refactor repository cloning interfaces: standardize parameters for Bitbucket, Gitea, and GitLab repository cloning functions to improve consistency and maintainability across the codebase.
2025-11-09 03:16:18 -06:00
Mauricio Siu
7b398939f7
Refactor compose and deployment services: streamline cloning and execution commands, remove redundant remote functions, and enhance error handling. Update database schema to include application build server ID for better tracking of deployments.
2025-11-09 03:12:49 -06:00
Mauricio Siu
2619733915
Refactor user schema and update database references: rename 'users_temp' to 'user' across the codebase, update related database queries, and enhance endpoint specifications for swarm settings in various database schemas.
2025-11-08 13:54:32 -06:00
HarikrishnanD
c5eb31ab90
feat: add web UI file upload to Docker containers
2025-11-05 11:55:40 +05:30
spacewaterbear
63568a4887
feat: display environnement in notification
2025-11-03 23:27:18 +01:00
ChristoferMendes
0c24507872
chore: run format-and-lint:fix
2025-11-03 09:44:14 -03:00
ChristoferMendes
6349cabf27
Merge branch 'canary' of github.com:ChristoferMendes/dokploy into feature/add-custom-webhook-notification-provider
2025-11-03 09:35:37 -03:00
Amirparsa Baghdadi
373c78a927
ArvanCloud new IP Ranges
2025-11-01 23:10:58 +03:30
ChristoferMendes
94536ab05a
Merge branch 'canary' of github.com:ChristoferMendes/dokploy into feature/add-custom-webhook-notification-provider
2025-10-31 11:48:35 -03:00
Hootan
a0c87358eb
feat: add mattermost notification provider
...
Add comprehensive Mattermost integration as a new notification provider:
## Backend Implementation:
- Add `mattermost` to notificationType enum and database schema
- Create mattermost table with webhookUrl, channel, username fields
- Implement CRUD operations: createMattermostNotification, updateMattermostNotification
- Add API routes: createMattermost, updateMattermost, testMattermostConnection
- Add sendMattermostNotification utility with proper payload formatting
## Frontend Implementation:
- Add MattermostIcon component with provided SVG logo
- Extend notification form with Mattermost schema validation
- Add webhook URL (required), channel and username (optional) form fields
- Integrate test connection functionality
- Add Mattermost to provider selection UI
## Notification Integration:
- Integrate across all notification types:
- Build success/error notifications
- Database backup notifications
- Docker cleanup notifications
- Dokploy restart notifications
- Server threshold alerts
- Format messages using Markdown for Mattermost compatibility
- Handle optional channel (#prefix) and username override
- Graceful fallback for empty optional fields
## Features:
- Webhook-based messaging to Mattermost channels
- Optional channel targeting and custom username display
- Consistent formatting with other notification providers
- Full CRUD support with proper validation
- Test connection capability
Closes: Support for Mattermost team communication platform
# Conflicts:
# apps/dokploy/components/dashboard/settings/notifications/handle-notifications.tsx
# apps/dokploy/components/icons/notification-icons.tsx
# apps/dokploy/server/api/routers/notification.ts
# packages/server/src/db/schema/notification.ts
# packages/server/src/services/notification.ts
# packages/server/src/utils/notifications/build-error.ts
# packages/server/src/utils/notifications/build-success.ts
# packages/server/src/utils/notifications/database-backup.ts
# packages/server/src/utils/notifications/docker-cleanup.ts
# packages/server/src/utils/notifications/dokploy-restart.ts
# packages/server/src/utils/notifications/server-threshold.ts
# packages/server/src/utils/notifications/utils.ts
2025-10-28 22:50:04 +01:00
WalidDevIO
91a385c302
feat[notifications]: Add dokployBackup notification type support
...
This commit adds support for the dokployBackup notification type across all relevant services and schemas.
2025-10-27 22:43:45 +01:00
Mauricio Siu
14e154bece
fix(application): use template literals for dynamic content in deployment comments
2025-10-25 13:18:09 -06:00
Mauricio Siu
e5aeff6106
fix(application): update deployment comment syntax to use template literals for dynamic content
2025-10-25 13:17:27 -06:00
Mauricio Siu
f6ff90eed9
fix(application): correct log path variable usage and update label syntax in getApplicationStats function
2025-10-25 13:16:25 -06:00
Mauricio Siu
f34a65cf14
Merge branch 'canary' into pass-dokploy-preview-url-at-build-time
2025-10-25 13:15:25 -06:00
Mauricio Siu
f4748bdd11
Merge branch 'canary' into feat-lark-webhook
2025-10-25 12:09:04 -06:00
Mauricio Siu
babc1c033e
Merge branch 'canary' into feat/docker-build-secrets
2025-10-24 23:42:23 -06:00
HarikrishnanD
046606e496
feat: add volume backup notification support ( #2875 )
2025-10-23 17:28:24 +05:30
ChristoferMendes
ee0a299343
Merge branch 'canary' of github.com:ChristoferMendes/dokploy into feature/add-custom-webhook-notification-provider
2025-10-09 11:08:07 -03:00
Mauricio Siu
e4f5a1d828
Merge branch 'canary' into separate-permission-for-deleting-environments-#2594
2025-10-05 00:19:01 -06:00
Mauricio Siu
fb0ed494fc
Merge branch 'canary' into separate-permission-for-creating-environments-#2593
2025-10-05 00:08:49 -06:00
Jorge González
571e97f247
feat(docker): Build-time Secrets
2025-10-01 18:24:03 -06:00
Kirill
c4519256cf
Pass DOKPLOY_DEPLOY_URL as build time argument so it can be used during build
2025-10-01 23:05:54 +03:00
ChristoferMendes
48e4fd3ddf
Merge branch 'feature/add-custom-webhook-notification-provider' of github.com:ChristoferMendes/dokploy into feature/add-custom-webhook-notification-provider
2025-09-29 08:54:21 -03:00
ChristoferMendes
276f870e74
Merge branch 'canary' of github.com:ChristoferMendes/dokploy into feature/add-custom-webhook-notification-provider
2025-09-29 08:54:04 -03:00
Simon Loir
dd2902a57c
fix: fix buildLink in docker compose deploy notifications
2025-09-27 16:50:25 +02:00
autofix-ci[bot]
008788a38a
[autofix.ci] apply automated fixes
2025-09-27 09:18:19 +00:00
Mauricio Siu
4033bb84b2
Merge pull request #2640 from amirparsadd/patch-1
...
feat: support Arvancloud CDN detection
2025-09-27 03:14:12 -06:00
ChristoferMendes
39d0b9649f
feat(notifications): add support for custom notifications in notification service
2025-09-26 17:06:45 -03:00
ischanx
b4a3cbdff4
feat(notifications): add lark webhook
2025-09-24 00:38:44 +08:00
autofix-ci[bot]
1b603d84d7
[autofix.ci] apply automated fixes
2025-09-22 19:11:08 +00:00
Amirparsa Baghdadi
95de98e94d
close string
2025-09-22 12:37:21 +03:30
Mauricio Siu
063d51e442
feat(bitbucket): add bitbucketEmail field to Bitbucket provider settings and update related API and database schema
2025-09-21 13:54:53 -06:00
Mauricio Siu
671cd497fd
Merge branch 'canary' into bitbucket-api-token
2025-09-21 03:10:37 -06:00
Mauricio Siu
c3b79c115d
Merge branch 'canary' into feat/libsql
2025-09-21 02:47:55 -06:00
Mauricio Siu
6847d8dbef
Merge pull request #2516 from cheetahbyte/fix/special-characters-passwords
...
fix(registries): special character passwords not working in registry creation.
2025-09-21 02:45:43 -06:00
Mauricio Siu
80b22d9458
refactor: replace js-yaml with yaml package for YAML parsing and stringifying across the application
2025-09-21 02:20:20 -06:00
Mauricio Siu
f13028ee70
fix: handle optional configFiles in template details and improve mapping safety
2025-09-21 01:07:25 -06:00