Skip to content

Commit 392f6b1

Browse files
authored
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.
1 parent 7de72fc commit 392f6b1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

registry/coder/modules/mux/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ Automatically install and run [mux](https://github.com/coder/mux) in a Coder wor
1414
module "mux" {
1515
count = data.coder_workspace.me.start_count
1616
source = "registry.coder.com/coder/mux/coder"
17-
version = "1.0.3"
17+
version = "1.0.4"
1818
agent_id = coder_agent.main.id
1919
}
2020
```
2121

22-
![mux](.images/product-hero.webp)
22+
![mux](../../.images/mux-product-hero.webp)
2323

2424
## Features
2525

@@ -37,7 +37,7 @@ module "mux" {
3737
module "mux" {
3838
count = data.coder_workspace.me.start_count
3939
source = "registry.coder.com/coder/mux/coder"
40-
version = "1.0.3"
40+
version = "1.0.4"
4141
agent_id = coder_agent.main.id
4242
}
4343
```
@@ -48,7 +48,7 @@ module "mux" {
4848
module "mux" {
4949
count = data.coder_workspace.me.start_count
5050
source = "registry.coder.com/coder/mux/coder"
51-
version = "1.0.3"
51+
version = "1.0.4"
5252
agent_id = coder_agent.main.id
5353
# Default is "latest"; set to a specific version to pin
5454
install_version = "0.4.0"
@@ -61,7 +61,7 @@ module "mux" {
6161
module "mux" {
6262
count = data.coder_workspace.me.start_count
6363
source = "registry.coder.com/coder/mux/coder"
64-
version = "1.0.3"
64+
version = "1.0.4"
6565
agent_id = coder_agent.main.id
6666
port = 8080
6767
}
@@ -89,7 +89,7 @@ Run without installing from the network (requires mux to be pre-installed):
8989
module "mux" {
9090
count = data.coder_workspace.me.start_count
9191
source = "registry.coder.com/coder/mux/coder"
92-
version = "1.0.3"
92+
version = "1.0.4"
9393
agent_id = coder_agent.main.id
9494
install = false
9595
}

0 commit comments

Comments
 (0)