@underpostnet/cyberia 3.3.76 → 3.4.0

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.
Files changed (132) hide show
  1. package/.env.example +1 -0
  2. package/.github/workflows/coverall.cyberia.ci.yml +17 -3
  3. package/.github/workflows/cyberia-client.cd.yml +2 -1
  4. package/.github/workflows/cyberia-server.cd.yml +2 -1
  5. package/.github/workflows/docker-image.cyberia-client.ci.yml +1 -1
  6. package/.github/workflows/docker-image.cyberia-client.dev.ci.yml +1 -1
  7. package/.github/workflows/docker-image.cyberia-server.ci.yml +1 -1
  8. package/.github/workflows/docker-image.cyberia-server.dev.ci.yml +1 -1
  9. package/.github/workflows/docker-image.engine-cyberia.ci.yml +1 -1
  10. package/.github/workflows/docker-image.engine-cyberia.dev.ci.yml +1 -1
  11. package/.github/workflows/engine-cyberia.ci.yml +7 -1
  12. package/.github/workflows/ghpkg.ci.yml +19 -2
  13. package/.github/workflows/gitlab.ci.yml +8 -6
  14. package/.github/workflows/hardhat.ci.yml +4 -1
  15. package/.github/workflows/npmpkg.ci.yml +9 -5
  16. package/.github/workflows/publish.ci.yml +21 -12
  17. package/.github/workflows/publish.cyberia.ci.yml +25 -14
  18. package/.github/workflows/pwa-microservices-template-page.cd.yml +4 -2
  19. package/CHANGELOG.md +110 -262
  20. package/CLI-HELP.md +29 -2
  21. package/Dockerfile +1 -1
  22. package/Dockerfile.dev +1 -1
  23. package/Dockerfile.test +1 -1
  24. package/README.md +1 -1
  25. package/bin/build.js +67 -14
  26. package/bin/cyberia.js +4 -4
  27. package/bin/index.js +4 -4
  28. package/compose.env +1 -0
  29. package/conf.js +1 -1043
  30. package/deploy/cyberia-client/deploy.sh +13 -11
  31. package/deploy/cyberia-server/deploy.sh +13 -11
  32. package/deploy/dd-cyberia/sync-deploy.sh +7 -28
  33. package/deploy/lib/config.sh +1 -1
  34. package/deploy/lib/github-actions-logging.sh +3 -2
  35. package/deploy/lib/host.sh +1 -1
  36. package/deploy/pwa-microservices-template/deploy.sh +7 -1
  37. package/deployment.yaml +1 -1
  38. package/docker-compose.yml +7 -7
  39. package/docs/coverage/cyberia/api/cyberia-instance/cyberia-fallback-capture.js.html +1591 -0
  40. package/docs/coverage/cyberia/api/cyberia-instance/index.html +116 -0
  41. package/docs/coverage/cyberia/api/cyberia-server-defaults/cyberia-server-defaults.js.html +4138 -0
  42. package/docs/coverage/cyberia/api/cyberia-server-defaults/index.html +116 -0
  43. package/docs/coverage/cyberia/api/object-layer/index.html +116 -0
  44. package/docs/coverage/cyberia/api/object-layer/object-layer.model.js.html +1393 -0
  45. package/docs/coverage/cyberia/base.css +362 -0
  46. package/docs/coverage/cyberia/block-navigation.js +82 -0
  47. package/docs/coverage/cyberia/favicon.png +0 -0
  48. package/docs/coverage/cyberia/index.html +161 -0
  49. package/docs/coverage/cyberia/prettify.css +101 -0
  50. package/docs/coverage/cyberia/prettify.js +937 -0
  51. package/docs/coverage/cyberia/projects/cyberia/atlas-sprite-sheet-generator.js.html +1315 -0
  52. package/docs/coverage/cyberia/projects/cyberia/index.html +176 -0
  53. package/docs/coverage/cyberia/projects/cyberia/instance-backup.js.html +715 -0
  54. package/docs/coverage/cyberia/projects/cyberia/instance-data.js.html +2182 -0
  55. package/docs/coverage/cyberia/projects/cyberia/shape-generator.js.html +3265 -0
  56. package/docs/coverage/cyberia/projects/cyberia/stat-balance.js.html +328 -0
  57. package/docs/coverage/cyberia/sort-arrow-sprite.png +0 -0
  58. package/docs/coverage/cyberia/sorter.js +205 -0
  59. package/hardhat/package-lock.json +6 -6
  60. package/hardhat/package.json +2 -2
  61. package/manifests/cronjobs/dd-cron/dd-cron-backup.yaml +1 -1
  62. package/manifests/cronjobs/dd-cron/dd-cron-vultr.yaml +1 -1
  63. package/manifests/deployment/dd-cyberia-development/deployment.yaml +1 -1
  64. package/manifests/deployment/dd-default-development/deployment.yaml +2 -2
  65. package/package.json +19 -17
  66. package/scripts/test-monitor.sh +1 -1
  67. package/src/api/file/file.router.js +7 -1
  68. package/src/cli/baremetal.js +1 -1
  69. package/src/cli/cluster.js +73 -18
  70. package/src/cli/deploy.js +211 -30
  71. package/src/cli/docker-compose.js +1 -1
  72. package/src/cli/index.js +36 -0
  73. package/src/cli/kubectl.js +4 -3
  74. package/src/cli/release.js +5 -1
  75. package/src/cli/repository.js +14 -11
  76. package/src/cli/run.js +10 -3
  77. package/src/cli/secrets.js +393 -200
  78. package/src/cli/socketsecurity.js +260 -0
  79. package/src/client/components/core/Badge.js +0 -1
  80. package/src/client/components/core/CssCore.js +11 -1
  81. package/src/client/components/core/Modal.js +189 -66
  82. package/src/client/components/core/SearchBox.js +0 -1
  83. package/src/client/components/core/ToolTip.js +15 -0
  84. package/src/client/components/cryptokoyn/AppShellCryptokoyn.js +0 -2
  85. package/src/client/components/cyberia-portal/RouterCyberiaPortal.js +0 -4
  86. package/src/client/components/default/AppShellDefault.js +1 -4
  87. package/src/client/components/itemledger/AppShellItemledger.js +0 -2
  88. package/src/client/components/underpost/AppShellUnderpost.js +12 -0
  89. package/src/client/components/underpost/CssUnderpost.js +15 -2
  90. package/src/client/public/cyberia-docs/CYBERIA-CLIENT.md +8 -0
  91. package/src/client/public/cyberia-docs/CYBERIA.md +1 -1
  92. package/src/client/public/cyberia-docs/OFF-CHAIN-ECONOMY.md +54 -56
  93. package/src/client/public/cyberia-docs/ROADMAP.md +1 -1
  94. package/src/client/public/cyberia-docs/UNDERPOST-PLATFORM.md +30 -29
  95. package/src/client/public/cyberia-docs/WHITE-PAPER.md +1 -1
  96. package/src/client/ssr/body/UnderpostDefaultSplashScreen.js +54 -25
  97. package/src/client/ssr/head/Css.js +12 -10
  98. package/src/client/ssr/views/Cyberia404.js +9 -13
  99. package/src/client/ssr/views/NotFound.js +75 -0
  100. package/src/client-builder/client-bundle.js +2 -2
  101. package/src/index.js +13 -1
  102. package/src/runtime/engine-cyberia/Dockerfile +1 -1
  103. package/src/runtime/engine-cyberia/Dockerfile.dev +1 -1
  104. package/src/runtime/engine-cyberia/Dockerfile.test +1 -1
  105. package/src/runtime/engine-cyberia/compose.env +1 -0
  106. package/src/runtime/engine-cyberia/docker-compose.yml +7 -7
  107. package/src/server/build/catalog.js +1 -0
  108. package/src/server/build/execution.js +19 -5
  109. package/src/server/build/package.js +166 -3
  110. package/src/server/build/testing.js +2 -1
  111. package/src/server/network/underpost-gateway.js +113 -14
  112. package/src/server/runtime/conf.js +57 -7
  113. package/src/server/runtime/config-scope.js +2 -0
  114. package/src/server/runtime/process.js +4 -3
  115. package/src/server/runtime/start.js +11 -2
  116. package/src/server/security/socketsecurity.js +1735 -0
  117. package/test/integration/infra/1-security/config-scope.test.js +3 -0
  118. package/test/integration/infra/1-security/socketsecurity.test.js +1041 -0
  119. package/test/integration/infra/1-security/sops-secret-store.test.js +201 -71
  120. package/test/integration/infra/4-ingress/underpost-ingress.test.js +1 -1
  121. package/test/unit/build-template.test.js +24 -0
  122. package/test/unit/catalog.test.js +13 -2
  123. package/test/unit/conf-resolution.test.js +41 -7
  124. package/test/unit/cyberia/instance-data.test.js +314 -0
  125. package/test/unit/deploy-legacy-gateway-sweep.test.js +63 -0
  126. package/test/unit/deploy-log-table.test.js +38 -0
  127. package/test/unit/execution-profiles.test.js +1 -0
  128. package/test/unit/gateway-pod-fetch.test.js +95 -0
  129. package/test/unit/letsencrypt-issuer.test.js +101 -0
  130. package/test/unit/package.test.js +118 -0
  131. package/test/unit/release-bump.test.js +3 -1
  132. package/test/unit/start-options.test.js +12 -0
@@ -8,6 +8,8 @@ source "$SCRIPT_DIR/../lib/host.sh"
8
8
  DEPLOY_ID=dd-cyberia
9
9
  INSTANCE_ID=mmo-client
10
10
  TARGET_NODE="${TARGET_NODE:-$WORKER_NODE}"
11
+ ENGINE_SRC_REPO="${ENGINE_SRC_REPO:-underpostnet/engine-test-cyberia}"
12
+ ENGINE_SRC_PRIVATE_REPO="${ENGINE_SRC_PRIVATE_REPO:-underpostnet/engine-private}"
11
13
 
12
14
  main() {
13
15
  deploy_start "Starting remote deploy"
@@ -15,24 +17,24 @@ main() {
15
17
  prepare_host "$ENGINE_ROOT"
16
18
 
17
19
  deploy_step "Build $DEPLOY_ID configuration" \
18
- sudo -n -- /bin/bash -lc \
19
- "cd $ENGINE_ROOT && node bin/build $DEPLOY_ID --conf"
20
+ sudo -n -- /bin/bash -lc \
21
+ "cd $ENGINE_ROOT && node bin/build $DEPLOY_ID --conf"
20
22
 
21
23
  deploy_step "Wait for target node readiness" \
22
- sudo -n -- /bin/bash -lc \
23
- "cd $ENGINE_ROOT && kubectl wait --for=condition=Ready node/${TARGET_NODE} --timeout=2m"
24
+ sudo -n -- /bin/bash -lc \
25
+ "cd $ENGINE_ROOT && kubectl wait --for=condition=Ready node/${TARGET_NODE} --timeout=2m"
24
26
 
25
27
  deploy_step "Wait for ingress rollout" \
26
- sudo -n -- /bin/bash -lc \
27
- "cd $ENGINE_ROOT && kubectl rollout status deployment/underpost-ingress -n default --timeout=5m"
28
+ sudo -n -- /bin/bash -lc \
29
+ "cd $ENGINE_ROOT && kubectl rollout status deployment/underpost-ingress -n default --timeout=5m"
28
30
 
29
31
  deploy_step "Wait for gateway rollout" \
30
- sudo -n -- /bin/bash -lc \
31
- "cd $ENGINE_ROOT && kubectl rollout status deployment/underpost-gateway -n default --timeout=5m"
32
+ sudo -n -- /bin/bash -lc \
33
+ "cd $ENGINE_ROOT && kubectl rollout status deployment/underpost-gateway -n default --timeout=5m"
32
34
 
33
35
  deploy_step "Deploy $DEPLOY_ID $INSTANCE_ID instance" \
34
- sudo -n -- /bin/bash -lc \
35
- "cd $ENGINE_ROOT && node bin run instance \
36
+ sudo -n -- /bin/bash -lc \
37
+ "cd $ENGINE_ROOT && node bin run instance \
36
38
  --kubeadm \
37
39
  ${TARGET_NODE:+--node-name ${TARGET_NODE}} \
38
40
  --gateway-api \
@@ -40,7 +42,7 @@ main() {
40
42
  --ingress-node ${INGRESS_NODE} \
41
43
  --ssh-key-path ${DEPLOY_SSH_KEY_PATH} \
42
44
  --deploy-id $DEPLOY_ID \
43
- --instance-id $INSTANCE_ID"
45
+ --instance-id $INSTANCE_ID"
44
46
  }
45
47
 
46
48
  main "$@"
@@ -8,6 +8,8 @@ source "$SCRIPT_DIR/../lib/host.sh"
8
8
  DEPLOY_ID=dd-cyberia
9
9
  INSTANCE_ID=mmo-server
10
10
  TARGET_NODE="${TARGET_NODE:-$WORKER_NODE}"
11
+ ENGINE_SRC_REPO="${ENGINE_SRC_REPO:-underpostnet/engine-test-cyberia}"
12
+ ENGINE_SRC_PRIVATE_REPO="${ENGINE_SRC_PRIVATE_REPO:-underpostnet/engine-private}"
11
13
 
12
14
  main() {
13
15
  deploy_start "Starting remote deploy"
@@ -15,24 +17,24 @@ main() {
15
17
  prepare_host "$ENGINE_ROOT"
16
18
 
17
19
  deploy_step "Build $DEPLOY_ID configuration" \
18
- sudo -n -- /bin/bash -lc \
19
- "cd $ENGINE_ROOT && node bin/build $DEPLOY_ID --conf"
20
+ sudo -n -- /bin/bash -lc \
21
+ "cd $ENGINE_ROOT && node bin/build $DEPLOY_ID --conf"
20
22
 
21
23
  deploy_step "Wait for target node readiness" \
22
- sudo -n -- /bin/bash -lc \
23
- "cd $ENGINE_ROOT && kubectl wait --for=condition=Ready node/${TARGET_NODE} --timeout=2m"
24
+ sudo -n -- /bin/bash -lc \
25
+ "cd $ENGINE_ROOT && kubectl wait --for=condition=Ready node/${TARGET_NODE} --timeout=2m"
24
26
 
25
27
  deploy_step "Wait for ingress rollout" \
26
- sudo -n -- /bin/bash -lc \
27
- "cd $ENGINE_ROOT && kubectl rollout status deployment/underpost-ingress -n default --timeout=5m"
28
+ sudo -n -- /bin/bash -lc \
29
+ "cd $ENGINE_ROOT && kubectl rollout status deployment/underpost-ingress -n default --timeout=5m"
28
30
 
29
31
  deploy_step "Wait for gateway rollout" \
30
- sudo -n -- /bin/bash -lc \
31
- "cd $ENGINE_ROOT && kubectl rollout status deployment/underpost-gateway -n default --timeout=5m"
32
+ sudo -n -- /bin/bash -lc \
33
+ "cd $ENGINE_ROOT && kubectl rollout status deployment/underpost-gateway -n default --timeout=5m"
32
34
 
33
35
  deploy_step "Deploy $DEPLOY_ID $INSTANCE_ID instance" \
34
- sudo -n -- /bin/bash -lc \
35
- "cd $ENGINE_ROOT && node bin run instance \
36
+ sudo -n -- /bin/bash -lc \
37
+ "cd $ENGINE_ROOT && node bin run instance \
36
38
  --kubeadm \
37
39
  ${TARGET_NODE:+--node-name ${TARGET_NODE}} \
38
40
  --gateway-api \
@@ -40,7 +42,7 @@ main() {
40
42
  --ingress-node ${INGRESS_NODE} \
41
43
  --ssh-key-path ${DEPLOY_SSH_KEY_PATH} \
42
44
  --deploy-id $DEPLOY_ID \
43
- --instance-id $INSTANCE_ID"
45
+ --instance-id $INSTANCE_ID"
44
46
  }
45
47
 
46
48
  main "$@"
@@ -23,13 +23,9 @@ UNDERPOST_ASSETS=src/client/public/underpost
23
23
  # from source, which is the behaviour this script had before bundle mode existed.
24
24
  BUNDLE_MODE="${BUNDLE_MODE:-1}"
25
25
  BUNDLE_SPLIT="${BUNDLE_SPLIT:-8}"
26
- # Where push-bundle records the uploaded keys, relative to a conf checkout root.
27
- BUNDLE_MANIFEST_PATH="conf/$DEPLOY_ID/storage.bundle.json"
28
26
  # `mv` into a directory that already exists nests the checkout inside it rather than replacing
29
27
  # it, and the pod would then load whatever conf the image carried.
30
28
  POD_SRC_PRIVATE_DIR="${POD_SRC_PRIVATE_REPO##*/}"
31
- # Sibling of the engine checkout, so the publish work tree is never part of it.
32
- POD_PRIVATE_CHECKOUT="../$POD_SRC_PRIVATE_DIR"
33
29
 
34
30
  main() {
35
31
  deploy_start "Starting remote sync and deploy"
@@ -102,38 +98,21 @@ main() {
102
98
 
103
99
  # Follows the manifest step: the client renders from the conf.ssr.json that build-manifest
104
100
  # writes, so a bundle pushed before it would ship the previous SSR views. The uploaded keys
105
- # are recorded in engine-private/conf/$DEPLOY_ID/storage.bundle.json, which the pod reads
106
- # back through its own conf repository.
101
+ # are recorded in engine-private/conf/$DEPLOY_ID/storage.bundle.json.
107
102
  if [ "$BUNDLE_MODE" = "1" ]; then
108
103
  deploy_step "Push $DEPLOY_ID client bundle" \
109
104
  sudo -n -- /bin/bash -lc \
110
105
  "cd $ENGINE_ROOT && node bin run push-bundle \
111
106
  --deploy-id $DEPLOY_ID \
112
107
  --split $BUNDLE_SPLIT"
113
-
114
- # push-bundle records the keys in the host's own conf checkout, but the pod replaces
115
- # ./engine-private with a clone of its conf repository — so the manifest is published
116
- # there too, or the pod reads an empty one and restores nothing. Cloning from the engine
117
- # root keeps `underpost clone` reading this checkout's credentials, and the work tree is
118
- # then moved out so it is never part of the engine checkout.
119
- deploy_step "Stage $DEPLOY_ID bundle manifest" \
120
- sudo -n -- /bin/bash -lc \
121
- "cd $ENGINE_ROOT && rm -rf $POD_PRIVATE_CHECKOUT \
122
- && node bin clone $POD_SRC_PRIVATE_REPO \
123
- && mv ./$POD_SRC_PRIVATE_DIR $POD_PRIVATE_CHECKOUT \
124
- && mkdir -p $POD_PRIVATE_CHECKOUT/conf/$DEPLOY_ID \
125
- && cp ./engine-private/$BUNDLE_MANIFEST_PATH $POD_PRIVATE_CHECKOUT/$BUNDLE_MANIFEST_PATH"
126
-
127
- # A rerun that uploads the same keys leaves the manifest byte-identical, and committing
128
- # nothing fails the step.
129
- if [ "$(has_changes $POD_PRIVATE_CHECKOUT "$ENGINE_ROOT")" = "1" ]; then
130
- deploy_step "Publish $DEPLOY_ID bundle manifest" \
131
- sudo -n -- /bin/bash -lc \
132
- "cd $ENGINE_ROOT && node bin cmt $POD_PRIVATE_CHECKOUT feat 'Update $DEPLOY_ID bundle manifest' \
133
- && node bin push $POD_PRIVATE_CHECKOUT $POD_SRC_PRIVATE_REPO"
134
- fi
135
108
  fi
136
109
 
110
+ # The pod replaces ./engine-private with a clone of its conf repository, so this publishes
111
+ # the deploy's conf there — the bundle manifest included — before the pod starts.
112
+ deploy_step "Build $DEPLOY_ID configuration" \
113
+ sudo -n -- /bin/bash -lc \
114
+ "cd $ENGINE_ROOT && node bin/build $DEPLOY_ID --conf"
115
+
137
116
  # Two commands, one bootstrap: `pod_bootstrap_cmd` replaces the image's engine with this
138
117
  # deploy's source and repoints the global bin at it — without that, the first step needing
139
118
  # the current CLI answered `unknown command 'app'`. `start --build` then owns the rest
@@ -26,4 +26,4 @@ DEPLOY_SSH_KEY_PATH="${DEPLOY_SSH_KEY_PATH:-/home/dd/tmp/897as9dxhaskd9}"
26
26
 
27
27
  # The published image the WordPress deploys run. Pinned rather than derived from the checkout's
28
28
  # version: a tag is only deployable once the release workflow has published it.
29
- DEPLOY_WP_IMAGE="${DEPLOY_WP_IMAGE:-underpost/wp:v3.3.76}"
29
+ DEPLOY_WP_IMAGE="${DEPLOY_WP_IMAGE:-underpost/wp:v3.4.0}"
@@ -537,8 +537,9 @@ run_quiet() {
537
537
 
538
538
  # stderr is duplicated: on its own for the native error and stack trace, and
539
539
  # into the merged stream so both the debug log and the filter see it in
540
- # chronological order with stdout.
541
- tee -a "$error_log" <"$fifo_dir/stderr" >"$fifo_dir/merged" &
540
+ # chronological order with stdout. tee opens the merged writer first: if a short command
541
+ # closes the stream before it, awk reads EOF and tee blocks until the drain kills it.
542
+ tee -a "$error_log" >"$fifo_dir/merged" <"$fifo_dir/stderr" &
542
543
  stderr_pid=$!
543
544
 
544
545
  "$@" >"$fifo_dir/merged" 2>"$fifo_dir/stderr" || status=$?
@@ -176,7 +176,7 @@ has_changes() {
176
176
  pod_bootstrap_cmd() {
177
177
  local deploy_id="$1"
178
178
  local env="${2:-production}"
179
- local repo="${3:-underpostnet/engine-test-${deploy_id#dd-}}"
179
+ local repo="${3:-underpostnet/engine-${deploy_id#dd-}}"
180
180
  local name="${repo##*/}"
181
181
 
182
182
  printf '%s' "cd /home/dd, \
@@ -11,6 +11,12 @@ REPO_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)"
11
11
 
12
12
  DEPLOY_ID=dd-github-pages
13
13
 
14
+ # `bin new --default-conf --conf-workflow-id $DEPLOY_ID` (src/cli/repository.js) keys the
15
+ # generated conf off this same variable, defaulting to underpostnet when unset — kept in step so
16
+ # a checkout under any GitHub owner (underpost, underpostnet, ...) builds and uploads its own
17
+ # `<owner>.github.io` pages instead of always the default owner's.
18
+ GITHUB_PAGES_HOST="${GITHUB_USERNAME:-underpostnet}.github.io"
19
+
14
20
  main() {
15
21
  deploy_start "Starting github pages deploy"
16
22
 
@@ -41,7 +47,7 @@ main() {
41
47
  node bin app load --env production --args deploy-id=$DEPLOY_ID
42
48
 
43
49
  deploy_step "Build $DEPLOY_ID client" \
44
- env NODE_ENV=production node bin client $DEPLOY_ID '' underpostnet.github.io /pwa-microservices-template-ghpkg
50
+ env NODE_ENV=production node bin client $DEPLOY_ID '' $GITHUB_PAGES_HOST /pwa-microservices-template-ghpkg
45
51
  }
46
52
 
47
53
  main "$@"
package/deployment.yaml CHANGED
@@ -20,7 +20,7 @@ spec:
20
20
  spec:
21
21
  containers:
22
22
  - name: dd-cyberia-development-blue
23
- image: underpost/underpost-engine:v3.3.76
23
+ image: underpost/underpost-engine:v3.4.0
24
24
  imagePullPolicy: IfNotPresent
25
25
  envFrom:
26
26
  - secretRef:
@@ -135,7 +135,7 @@ services:
135
135
  # server starts but rejects connections until seeded). Serves REST/WS on 4005
136
136
  # and the engine gRPC data service on 50051.
137
137
  engine-cyberia-runtime:
138
- image: ${ENGINE_CYBERIA_IMAGE:-underpost/engine-cyberia-dev}:${ENGINE_CYBERIA_TAG:-v3.3.76}
138
+ image: ${ENGINE_CYBERIA_IMAGE:-underpost/engine-cyberia-dev}:${ENGINE_CYBERIA_TAG:-v3.4.0}
139
139
  container_name: dd-cyberia-engine
140
140
  command:
141
141
  - /bin/sh
@@ -190,7 +190,7 @@ services:
190
190
  # gateway on host port 8081, so one port can route every instance path.
191
191
 
192
192
  cyberia-server-runtime:
193
- image: ${CYBERIA_SERVER_IMAGE:-underpost/cyberia-server-dev}:${CYBERIA_SERVER_TAG:-v3.3.76}
193
+ image: ${CYBERIA_SERVER_IMAGE:-underpost/cyberia-server-dev}:${CYBERIA_SERVER_TAG:-v3.4.0}
194
194
  container_name: dd-cyberia-server
195
195
  environment:
196
196
  INSTANCE_CODE: amethyst-strata-expansion
@@ -228,7 +228,7 @@ services:
228
228
  restart: unless-stopped
229
229
 
230
230
  cyberia-server-forest:
231
- image: ${CYBERIA_SERVER_IMAGE:-underpost/cyberia-server-dev}:${CYBERIA_SERVER_TAG:-v3.3.76}
231
+ image: ${CYBERIA_SERVER_IMAGE:-underpost/cyberia-server-dev}:${CYBERIA_SERVER_TAG:-v3.4.0}
232
232
  container_name: dd-cyberia-server-forest
233
233
  environment:
234
234
  INSTANCE_CODE: FOREST
@@ -266,7 +266,7 @@ services:
266
266
  restart: unless-stopped
267
267
 
268
268
  cyberia-server-test:
269
- image: ${CYBERIA_SERVER_IMAGE:-underpost/cyberia-server-dev}:${CYBERIA_SERVER_TAG:-v3.3.76}
269
+ image: ${CYBERIA_SERVER_IMAGE:-underpost/cyberia-server-dev}:${CYBERIA_SERVER_TAG:-v3.4.0}
270
270
  container_name: dd-cyberia-server-test
271
271
  environment:
272
272
  INSTANCE_CODE: TEST
@@ -315,7 +315,7 @@ services:
315
315
  # cyberia-server-test -> cyberia-client-test
316
316
 
317
317
  cyberia-client-runtime:
318
- image: ${CYBERIA_CLIENT_IMAGE:-underpost/cyberia-client-dev}:${CYBERIA_CLIENT_TAG:-v3.3.76}
318
+ image: ${CYBERIA_CLIENT_IMAGE:-underpost/cyberia-client-dev}:${CYBERIA_CLIENT_TAG:-v3.4.0}
319
319
  container_name: dd-cyberia-client
320
320
  environment:
321
321
  CYBERIA_PORT: '8081'
@@ -340,7 +340,7 @@ services:
340
340
  restart: unless-stopped
341
341
 
342
342
  cyberia-client-forest:
343
- image: ${CYBERIA_CLIENT_IMAGE:-underpost/cyberia-client-dev}:${CYBERIA_CLIENT_TAG:-v3.3.76}
343
+ image: ${CYBERIA_CLIENT_IMAGE:-underpost/cyberia-client-dev}:${CYBERIA_CLIENT_TAG:-v3.4.0}
344
344
  container_name: dd-cyberia-client-forest
345
345
  environment:
346
346
  CYBERIA_PORT: '8081'
@@ -365,7 +365,7 @@ services:
365
365
  restart: unless-stopped
366
366
 
367
367
  cyberia-client-test:
368
- image: ${CYBERIA_CLIENT_IMAGE:-underpost/cyberia-client-dev}:${CYBERIA_CLIENT_TAG:-v3.3.76}
368
+ image: ${CYBERIA_CLIENT_IMAGE:-underpost/cyberia-client-dev}:${CYBERIA_CLIENT_TAG:-v3.4.0}
369
369
  container_name: dd-cyberia-client-test
370
370
  environment:
371
371
  CYBERIA_PORT: '8081'