https://github.com/freeelephants/dev-router
automated reverse proxy system for local Docker development environments
https://github.com/freeelephants/dev-router
developer-tools docker docker-compose traefik
Last synced: 4 months ago
JSON representation
automated reverse proxy system for local Docker development environments
- Host: GitHub
- URL: https://github.com/freeelephants/dev-router
- Owner: FreeElephants
- Created: 2021-05-05T16:42:15.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2025-12-21T20:17:46.000Z (6 months ago)
- Last Synced: 2025-12-21T20:52:15.886Z (6 months ago)
- Topics: developer-tools, docker, docker-compose, traefik
- Language: Makefile
- Homepage: https://deepwiki.com/FreeElephants/dev-router
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Development Router
Automated Reverse Proxy and virtual hosts for local docker services.
## Usage:
```
make install
make run
```
1. Add to upstream service docker-compose configuration:
```yaml
services:
some-service:
labels:
- "traefik.enable=true"
- "traefik.http.routers.some-service.rule=Host(`some-service.local`)"
- "traefik.http.routers.some-service.entrypoints=web"
```
2. Add virtual host name to `/etc/hosts`
```
127.0.0.1 some-service.local
```
Now you can open your service from host at http://some-service.local.