From 6c23261e9a2b65ad8a25ea075a8125e1d6010a0f Mon Sep 17 00:00:00 2001 From: Atif Ali Date: Tue, 2 Dec 2025 18:38:48 +0000 Subject: [PATCH] fix(mux): move image to shared folder and fix path - Move product-hero.webp from module's .images/ to registry/coder/.images/ - Rename to mux-product-hero.webp for consistency with other modules - Update README path from .images/ to ../../.images/ --- .../mux-product-hero.webp} | Bin registry/coder/modules/mux/README.md | 12 ++++++------ 2 files changed, 6 insertions(+), 6 deletions(-) rename registry/coder/{modules/mux/.images/product-hero.webp => .images/mux-product-hero.webp} (100%) diff --git a/registry/coder/modules/mux/.images/product-hero.webp b/registry/coder/.images/mux-product-hero.webp similarity index 100% rename from registry/coder/modules/mux/.images/product-hero.webp rename to registry/coder/.images/mux-product-hero.webp diff --git a/registry/coder/modules/mux/README.md b/registry/coder/modules/mux/README.md index c21f93973..78925ed3e 100644 --- a/registry/coder/modules/mux/README.md +++ b/registry/coder/modules/mux/README.md @@ -14,12 +14,12 @@ Automatically install and run [mux](https://github.com/coder/mux) in a Coder wor module "mux" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/mux/coder" - version = "1.0.3" + version = "1.0.4" agent_id = coder_agent.main.id } ``` -![mux](.images/product-hero.webp) +![mux](../../.images/mux-product-hero.webp) ## Features @@ -37,7 +37,7 @@ module "mux" { module "mux" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/mux/coder" - version = "1.0.3" + version = "1.0.4" agent_id = coder_agent.main.id } ``` @@ -48,7 +48,7 @@ module "mux" { module "mux" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/mux/coder" - version = "1.0.3" + version = "1.0.4" agent_id = coder_agent.main.id # Default is "latest"; set to a specific version to pin install_version = "0.4.0" @@ -61,7 +61,7 @@ module "mux" { module "mux" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/mux/coder" - version = "1.0.3" + version = "1.0.4" agent_id = coder_agent.main.id port = 8080 } @@ -89,7 +89,7 @@ Run without installing from the network (requires mux to be pre-installed): module "mux" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/mux/coder" - version = "1.0.3" + version = "1.0.4" agent_id = coder_agent.main.id install = false }