192.168.0.0/24 is the network segment the physical docker node is on. Not sure if that’s supposed to be my external, internet routable IP… but that is dynamic.
From where I sit, the “dial tcp” errors not able to connect to 127.0.0.1:53 seem to be the hurdle I’m facing now. FWIW, I setup the registry mirror service too and it also seems to be having trouble connecting to the “docker dns”. This shows up in its logs as well:
panic: Get https://registry-1.docker.io/v2/: dial tcp: lookup registry-1.docker.io on 127.0.0.11:53: read udp 127.0.0.1:45493->127.0.0.11:53: i/o timeout
I believe there is a typo on the yml, it should be --docker.swarmMode instead of --docker.swarmmode this, is true at least for the traefik version I’m using.
I keep seeing this message in my docker swarm for traefik. Only using wallabag to test at the moment. And I’ve already been rate limited.
[email protected] | time=“2019-03-21T22:56:45Z” level=debug msg=“Filtering container without port, traefik_traefik.1im380tylloon8orfxq5jl7cc: port label is missing, please use traefik.port as default value or define port label for all segments (‘traefik.<segment_name>.port’)”
I had to manually add a DNS name. Which provider is recommended? I can switch to something that works with Traefik. Time to look at docs again.
Running into a wall. https://wallabag.mydomain.com just displays a 404. I have not setup oauth in anyway, hopefully it isn’t causing an issue. Any ideas on how to troubleshoot this?
I can confirm NAMECHEAP works fine with Traefik too – even the wildcard DNS challenge – BUT – they don’t unlock the API key for that until you’ve spent like $50 with them. Woth it if you like their domain hosting prices and are comfortable locking in a longer purchase.
Also the scratch stack sets up a network named “public” with a specific subnet, but then it is never used by the examples that follow. The traefik network is named traefik_public, which of course would not exist yet, so it is created anyways.
I keep receiving the following in an email when utilizing github and traefik:
On February 15th, 2020 at 04:23 (UTC) your application (Radarr) used an access token (with the User-Agent Go-http-client/1.1) as part of a query parameter to access an endpoint through the GitHub API:
I’m getting an error nobody has flagged so far, from what I can tell.
I reach this point:
$ docker stack deploy traefik-app -c /var/data/config/traefik/traefik-app.yml Creating service traefik-app_traefik
So far, so good.
But then $ docker stack ps traefik-app returns lots of failed containers (well, the same failed container, starting over and over), with the error message "task: non-zero exit (1)" against each one.
So then $ docker services logs {id of one of the failed containers} tells me:
command traefik error: field not found, node: redirect
I little Googling of “field not found, node: redirect” brings up a few examples of where this is happening because of a mismatch of traefik v1 and v2 configs, ie. trying to use a traefik v1 config with traefik >v2.0
Is that what’s happening here?
I should also point out that I’m running this on a one-node swarm, but if adding more nodes would be worth trying, I’ll give that go.
Welcome @Matthew_Lancey! Yes, I’d be inclined to agree with you on that. A quick test would be trying to run Traefik v1, and seeing whether that solves the problem. There are several geeks in our Discord server, who’ve successfully migrated to Traefik v2, and a v2 recipe is in the works - you could pop in there and get some pointers? (Specifically @HexF is using it, I’m aware…)
At the ingredients you list: “Traefik configured per design” and even provide a link to this very page. Nitpicking, but the recursion triggered my OCD.
You create /var/data/config/traefikv2/traefikv2.yml twice!
You refer to docker stack deploy traefikv2 -c /var/data/config/traefikv2/traefikv2.yml on the text (which is correct), then run docker stack deploy traefik-app -c traefikv2.yml in the code block right after that. And the output doesn’t match.
Can we get a sample/example file of /var/data/config/traefikv2/traefikv2.env. I assume it has DNS provider credentials for CloudFlare, but is there something else?
I love the cookbook btw, was waiting for the traefik v2 update since I first discovered it. Thank you for your efforts!