https://github.com/jefking/multiplexor
https://github.com/jefking/multiplexor
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jefking/multiplexor
- Owner: jefking
- License: mit
- Created: 2022-03-07T04:30:59.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-07T05:47:21.000Z (over 4 years ago)
- Last Synced: 2025-06-20T18:10:08.854Z (12 months ago)
- Language: Dockerfile
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Multiplexor
## BUILD
```
cd ingress
sudo docker build . -t mvp/ingress
```
```
cd listen
sudo docker build . -t mvp/listen
```
## RUN
Listen 1
```
docker run -it -p 9090:80 mvp/listen
```
Listen 2
```
docker run -it -p 9091:80 mvp/listen
```
Ingress
```
docker run -it -p 9080:80 mvp/ingress
```