Tiniest server which responds with requester IPv4 address - Why - Usage - Local - Docker - Contributing - Where to start? - Code of Conduct - License
This server is the counter part to https://github.com/kevingimbel/mip.
It responds with the callers' IP address on request. That's it.
Run the server with cargo run
, then connect to it on port 8111.
Start the Docker container and connect on port 8111
(or what ever port chosen).
sh
docker run --rm -p 8111:8111 kevingimbel/mip
Using docker-compose
:
```yaml version: '3'
services: mip: image: kevingimbel/mip ports: - 8111:8111 ```
Then start with docker-compose up -d
.
We love and welcome every form of contribution!
Here are some good places to start:
See open issues.
You are expected to follow our code of conduct when interacting with the project via issues, pull requests or in any other form. Many thanks to the awesome contributor covenant initiative!
GNU AFFERO GENERAL PUBLIC LICENSE 3, see LICENSE file.