replicas-engine 0.1.222 → 0.1.223

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/src/index.js CHANGED
@@ -555,22 +555,19 @@ Docker is pre-installed in Replicas workspaces, but the daemon does **not** auto
555
555
 
556
556
  \`\`\`bash
557
557
  sudo service docker start
558
+ until docker info >/dev/null 2>&1; do sleep 0.2; done
558
559
  \`\`\`
559
560
 
560
- After starting, verify the daemon is running:
561
-
562
- \`\`\`bash
563
- docker info
564
- \`\`\`
561
+ \`service docker start\` returns before the socket is accepting connections, so immediate commands may fail without the poll.
565
562
 
566
563
  ## Important Notes
567
564
 
568
565
  - **Start once per session.** The daemon stays running until the workspace shuts down. You do not need to restart it between commands.
569
566
  - **Check before starting.** If you are unsure whether the daemon is already running, check first to avoid an unnecessary restart:
570
567
  \`\`\`bash
571
- docker info > /dev/null 2>&1 || sudo service docker start
568
+ docker info >/dev/null 2>&1 || { sudo service docker start && until docker info >/dev/null 2>&1; do sleep 0.2; done; }
572
569
  \`\`\`
573
- - **Sudo is required** for starting the daemon, but regular \`docker\` commands run without sudo (the user is in the \`docker\` group).
570
+ - **Sudo is only required for starting the daemon.** The workspace user is in the \`docker\` group, so regular \`docker\` commands work without sudo.
574
571
  `;
575
572
  var DOCKER_ABILITY = {
576
573
  label: "Docker",
@@ -1763,7 +1760,7 @@ function parseReplicasConfigString(content, filename) {
1763
1760
  }
1764
1761
 
1765
1762
  // ../shared/src/engine/environment.ts
1766
- var DAYTONA_SNAPSHOT_ID = "27-05-2026-royal-york-v6";
1763
+ var DAYTONA_SNAPSHOT_ID = "27-05-2026-royal-york-v7";
1767
1764
 
1768
1765
  // ../shared/src/engine/types.ts
1769
1766
  var DEFAULT_CHAT_TITLES = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-engine",
3
- "version": "0.1.222",
3
+ "version": "0.1.223",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",