Install the following apps (I used default settings unless otherwise noted) ...
Open a Desktop set of apps to get started Git Bash terminal in your working directory, an Atom text editor and a Docker console...
From the Traefik (reverse proxy) Docker get started page
https://hub.docker.com/_/traefik create the yaml file in a working directory
Start the docker per the getting started doc, I ran this from my working traefik directory so $PWD was already set
Code: Select all
docker run -d -p 8080:8080 -p 80:80 \
-v $PWD/traefik.yml:/etc/traefik/traefik.yml \
-v /var/run/docker.sock:/var/run/docker.sock \
traefik:v2.0
First time I ran this I got an error
Code: Select all
C:\Program Files\Docker\Docker\resources\bin\docker.exe: Error response from daemon: mkdir C:\Program Files\Git\var: Access is denied.
I had to open a new Git Bash shell as an Admin user and create the directory.
Code: Select all
cd c:/"Program Files"/Git
mkdir var
Now it seems like that docker image is running. Wonder what I can do with it? Traefik should have some web UI to manage its config. I wonder a) is there an IP registered in my router for this new docker doo-hickey that is running and can I get to its web page???