@noosphere/agent-core 0.1.0-alpha.6 → 0.1.0-alpha.7

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.cjs CHANGED
@@ -512,7 +512,7 @@ var ContainerManager = class {
512
512
  * Start a persistent container that stays running
513
513
  */
514
514
  async startPersistentContainer(containerId, metadata) {
515
- const containerName = `noosphere-${containerId}`;
515
+ const containerName = `noosphere-${metadata.name}`;
516
516
  const imageTag = `${metadata.image}:${metadata.tag || "latest"}`;
517
517
  try {
518
518
  const existingContainer = this.docker.getContainer(containerName);