@beastmode-develeap/beastmode 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6725,6 +6725,7 @@ function generateComposeYaml(tag) {
|
|
|
6725
6725
|
return `services:
|
|
6726
6726
|
# Python board API \u2014 data layer (SQLite + WebSocket). Internal only.
|
|
6727
6727
|
board:
|
|
6728
|
+
platform: linux/amd64
|
|
6728
6729
|
image: ${GHCR_IMAGE_PREFIX}/board:${tag}
|
|
6729
6730
|
expose:
|
|
6730
6731
|
- "8080"
|
|
@@ -6741,6 +6742,7 @@ function generateComposeYaml(tag) {
|
|
|
6741
6742
|
# Node.js UI server \u2014 board UI with password auth.
|
|
6742
6743
|
# Access at http://localhost:8420
|
|
6743
6744
|
ui:
|
|
6745
|
+
platform: linux/amd64
|
|
6744
6746
|
image: ${GHCR_IMAGE_PREFIX}/ui:${tag}
|
|
6745
6747
|
ports:
|
|
6746
6748
|
- "\${UI_PORT:-8420}:8080"
|
|
@@ -6762,6 +6764,7 @@ function generateComposeYaml(tag) {
|
|
|
6762
6764
|
|
|
6763
6765
|
# Pipeline daemon \u2014 polls board, runs tasks
|
|
6764
6766
|
daemon:
|
|
6767
|
+
platform: linux/amd64
|
|
6765
6768
|
image: ${GHCR_IMAGE_PREFIX}/daemon:${tag}
|
|
6766
6769
|
env_file:
|
|
6767
6770
|
- path: .env
|