Files
coder/docs/port-forwarding.md
Ammar Bandukwala 13a2014d7f docs: fix up port-forwarding (#3403)
- Improve English
- Make new page live in manifest.json
- Add icon
- Outdent page to root
2022-08-07 22:22:47 +00:00

825 B

Port Forwarding

Port forwarding lets developers securely access processes on their Coder workspace from a local machine. A common use case is testing web applications in a browser.

There are two ways to forward ports in Coder:

  • The coder port-forward command
  • SSH

The coder port-forward command is generally more performant.

coder port-forward

Forward the remote TCP port 8080 to local port 8000 like so:

coder port-forward myworkspace --tcp 8000:8080

For more examples, see coder port-forward --help.

SSH

First, configure SSH on your local machine. Then, use ssh to forward like so:

ssh -L 8080:localhost:8000 coder.myworkspace

You can read more on SSH port forwarding here.