[v7.0] add automation-worker#87
Open
SkywalkerSpace wants to merge 1 commit into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds Docker Compose definitions for running a new automation-worker service, providing both an “add-on to the main stack” compose file and a “standalone” compose file.
Changes:
- Added
compose/automation-worker.ymlto runautomation-workeralongside the existing SeaTable stack (includingdepends_onand backend network wiring). - Added
compose/automation-worker-standalone.ymlto runautomation-workeras a standalone container with an exposed port.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 9 comments.
| File | Description |
|---|---|
| compose/automation-worker.yml | Adds an automation-worker service intended to join the main stack network and depend on mariadb/redis. |
| compose/automation-worker-standalone.yml | Adds a standalone automation-worker service definition with a published port. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -0,0 +1,47 @@ | |||
| services: | |||
| @@ -0,0 +1,47 @@ | |||
| services: | |||
| automation-worker: | |||
| image: ${APP_SERVER_IMAGE:-seatable/automation-worker:7.0.0} | |||
Comment on lines
+9
to
+11
| - SEATABLE_LOG_TO_STDOUT=${LOG_TO_STDOUT:-false} | ||
| - NON_ROOT==${NON_ROOT:-false} | ||
| - TZ=${TIME_ZONE:-UTC} |
Comment on lines
+21
to
+22
| - REDIS_PORT=${REDIS_PORT:-6379} | ||
| - REDIS_PASSWORD=${REDIS_PASSWORD:-} |
Comment on lines
+40
to
+41
| redis: | ||
| condition: service_started |
| @@ -0,0 +1,38 @@ | |||
| services: | |||
| @@ -0,0 +1,38 @@ | |||
| services: | |||
| automation-worker: | |||
| image: ${APP_SERVER_IMAGE:-seatable/automation-worker:7.0.0} | |||
Comment on lines
+11
to
+13
| - SEATABLE_LOG_TO_STDOUT=${LOG_TO_STDOUT:-false} | ||
| - NON_ROOT==${NON_ROOT:-false} | ||
| - TZ=${TIME_ZONE:-UTC} |
Comment on lines
+23
to
+24
| - REDIS_PORT=${REDIS_PORT:-6379} | ||
| - REDIS_PASSWORD=${REDIS_PASSWORD:-} |
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.
No description provided.