2 stable releases
new 1.0.1 | Nov 23, 2024 |
---|
#249 in Network programming
91 downloads per month
12KB
curltainer
curl anything running inside a Docker container, even with no exposed ports
Install
cargo install curltainer
Usage
Usage: curltainer --container-name <CONTAINER_NAME> [CURL_ARGS]...
Arguments:
[CURL_ARGS]...
Options:
-c, --container-name <CONTAINER_NAME>
-h, --help Print help
-V, --version Print version
How it works?
Start a Docker container with a HTTP server, with no ports exposed to the host:
$ docker run -d python python -m http.server 9000
a8c8e9...
curl the server running inside the container from the host:
$ sudo curltainer -c a8c8e9... localhost:9000 -v
* Trying 127.0.0.1:9000...
* Connected to localhost (127.0.0.1) port 9000 (#0)
> GET / HTTP/1.1
> Host: localhost:9000
> User-Agent: curl/7.81.0
> Accept: */*
>
* Mark bundle as not supporting multiuse
* HTTP 1.0, assume close after body
< HTTP/1.0 200 OK
< Server: SimpleHTTP/0.6 Python/3.13.0
< Date: Sat, 23 Nov 2024 20:16:00 GMT
< Content-type: text/html; charset=utf-8
< Content-Length: 877
<
<!DOCTYPE HTML>
<html lang="en">
...
Dependencies
~13–24MB
~338K SLoC