From 392f6b120a8958c090005ff36e1a6125a65097ee Mon Sep 17 00:00:00 2001 From: Atif Ali Date: Tue, 2 Dec 2025 23:42:05 +0500 Subject: [PATCH] fix(mux): move image to shared folder and fix path (#573) ## Summary Fix the mux module image rendering by moving the image to the shared images folder and updating the path. ## Changes - Move `product-hero.webp` from `registry/coder/modules/mux/.images/` to `registry/coder/.images/` - Rename to `mux-product-hero.webp` for consistency with other module images (e.g., `amazon-q.png`, `amazon-dcv-windows.png`) - Update README path from `.images/product-hero.webp` to `../../.images/mux-product-hero.webp` This follows the same pattern as other modules like `amazon-q`, `amazon-dcv-windows`, and `jetbrains-gateway` which all use `../../.images/` paths. --- .../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 c21f9397..78925ed3 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 }