diff --git a/docs/images/user-guides/desktop/coder-desktop-file-sync-add.png b/docs/images/user-guides/desktop/coder-desktop-file-sync-add.png new file mode 100644 index 0000000000000..35e59d76866f2 Binary files /dev/null and b/docs/images/user-guides/desktop/coder-desktop-file-sync-add.png differ diff --git a/docs/images/user-guides/desktop/coder-desktop-file-sync-conflicts-mouseover.png b/docs/images/user-guides/desktop/coder-desktop-file-sync-conflicts-mouseover.png new file mode 100644 index 0000000000000..80a5185585c1a Binary files /dev/null and b/docs/images/user-guides/desktop/coder-desktop-file-sync-conflicts-mouseover.png differ diff --git a/docs/images/user-guides/desktop/coder-desktop-file-sync-staging.png b/docs/images/user-guides/desktop/coder-desktop-file-sync-staging.png new file mode 100644 index 0000000000000..6b846f3ef244f Binary files /dev/null and b/docs/images/user-guides/desktop/coder-desktop-file-sync-staging.png differ diff --git a/docs/images/user-guides/desktop/coder-desktop-file-sync-watching.png b/docs/images/user-guides/desktop/coder-desktop-file-sync-watching.png new file mode 100644 index 0000000000000..7875980186e33 Binary files /dev/null and b/docs/images/user-guides/desktop/coder-desktop-file-sync-watching.png differ diff --git a/docs/images/user-guides/desktop/coder-desktop-file-sync.png b/docs/images/user-guides/desktop/coder-desktop-file-sync.png new file mode 100644 index 0000000000000..5976528010371 Binary files /dev/null and b/docs/images/user-guides/desktop/coder-desktop-file-sync.png differ diff --git a/docs/images/user-guides/desktop/coder-desktop-workspaces.png b/docs/images/user-guides/desktop/coder-desktop-workspaces.png index 664228fe214e7..c621c7e541094 100644 Binary files a/docs/images/user-guides/desktop/coder-desktop-workspaces.png and b/docs/images/user-guides/desktop/coder-desktop-workspaces.png differ diff --git a/docs/manifest.json b/docs/manifest.json index ea1d19561593f..bbeb287b41985 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -193,7 +193,7 @@ "description": "Use Coder Desktop to access your workspace like it's a local machine", "path": "./user-guides/desktop/index.md", "icon_path": "./images/icons/computer-code.svg", - "state": ["early access"] + "state": ["beta"] }, { "title": "Workspace Management", diff --git a/docs/user-guides/desktop/index.md b/docs/user-guides/desktop/index.md index 72d627c7a3e71..b10a8f20647e9 100644 --- a/docs/user-guides/desktop/index.md +++ b/docs/user-guides/desktop/index.md @@ -1,4 +1,4 @@ -# Coder Desktop (Early Access) +# Coder Desktop (Beta) Use Coder Desktop to work on your workspaces as though they're on your LAN, no port-forwarding required. @@ -22,7 +22,7 @@ You can install Coder Desktop on macOS or Windows. Alternatively, you can manually install Coder Desktop from the [releases page](https://github.com/coder/coder-desktop-macos/releases). -1. Open **Coder Desktop** from the Applications directory. When macOS asks if you want to open it, select **Open**. +1. Open **Coder Desktop** from the Applications directory. 1. The application is treated as a system VPN. macOS will prompt you to confirm with: @@ -129,28 +129,74 @@ While active, Coder Connect will list the workspaces you own and will configure To copy the `.coder` hostname of a workspace agent, you can click the copy icon beside it. -On macOS you can use `ping6` in your terminal to verify the connection to your workspace: +You can also connect to the SSH server in your workspace using any SSH client, such as OpenSSH or PuTTY: ```shell - ping6 -c 5 your-workspace.coder + ssh your-workspace.coder ``` -On Windows, you can use `ping` in a Command Prompt or PowerShell terminal to verify the connection to your workspace: +Any services listening on ports in your workspace will be available on the same hostname. For example, you can access a web server on port `8080` by visiting `http://your-workspace.coder:8080` in your browser. + +> [!NOTE] +> Currently, the Coder IDE extensions for VSCode and JetBrains create their own tunnel and do not utilize the Coder Connect tunnel to connect to workspaces. + +### Ping your workspace + +