Files
code-snippets/docs/docker/cloudflared.md
Liam Pietralla 810b2e5d97
All checks were successful
Build, Test & Publish / Build (push) Successful in 27s
Build, Test & Publish / Build and Publish Container Image (push) Successful in 38s
Build, Test & Publish / Deploy to Infrastructure (push) Successful in 36s
fix command
2026-02-18 11:04:09 +11:00

11 lines
382 B
Markdown

# Cloudflared Tunnel
Often times it's useful to spin up a tunnel to your local machine to test out your application. Cloudflared is a great tool for this, and it's very easy to use with Docker.
## Usage
The following command will start a tunnel to your local machine on port 3000:
```bash
docker run --rm cloudflare/cloudflared tunnel --url http://host.docker.internal:3000
```