Skip to content

Instantly share code, notes, and snippets.

View rkulow's full-sized avatar

Rainer Kulow rkulow

View GitHub Profile
@franciscoj
franciscoj / docker-compose.yml
Last active June 5, 2021 18:45
Docker for local dev reverse proxy
version: '3'
services:
proxy:
image: traefik:v2.0 # The official Traefik docker image
network_mode: host # Allows traefik to talk to your host machine
ports:
- "80:80"
- "443:443"
- "8080:8080" # The Web UI
volumes: