mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-14 11:23:02 +02:00
28 lines
487 B
Markdown
28 lines
487 B
Markdown
rinetd
|
|
======
|
|
|
|
[rinetd][1] is used to efficiently redirect connections from one IP
|
|
address/port combination to another. It is useful when operating virtual
|
|
servers, firewalls and the like.
|
|
|
|
## docker-compose.yml
|
|
|
|
```yaml
|
|
rinetd:
|
|
image: vimagick/rinetd
|
|
volumes:
|
|
- ./data:/etc/rinetd
|
|
net: host
|
|
restart: always
|
|
```
|
|
|
|
## up and running
|
|
|
|
```bash
|
|
$ docker-compose up -d
|
|
$ dig @127.0.0.1 -p 5353 google.com +short
|
|
$ docker-compose logs
|
|
```
|
|
|
|
[1]: https://github.com/samhocevar/rinetd
|