It was available when truenas still used kubernetes and allowed 3rd party app catalogues. Traefik was never an official app available from iX directly. It was truecharts that provided it and the simple ingress one click deployment for their apps.
You can deploy traefik as a custom app, but new apps won’t magically appear with a domain. In the world of docker you have to add the proper labeles to the container or create the routers directly in the dynamic yaml of traefik.
Edit:
Here are examples of labeles of my homepage docker is deployed with traefik labels
Such a thing isn’t possible currently through the TrueNAS apps system. I doubt it ever will be, but of course that’s only a guess (though I like to think an informed one). For something like this, you need to be using custom apps with your own Compose files. I discuss a few options for doing this here:
My preference to manage them is Dockge, which I describe here:
(and note the video linked there, if you prefer video to text).
For a proxy, I prefer Caddy to Traefik, as described here:
I knew about the labels I would need to add if i go the Traefik custom app way. Thanks for the examples, very insightful.
I was considering to go the Traefik/Portainer way and no specific ix ‘apps’, so it would be easier to make them interact. Enter the second reply by @dan
I had problems with traefik and portainer because i could not get portainer to recognize the .env file. Traefik is one of the only apps i use with plain docker compose up -d
I’ll be reading up on Caddy/Dockge as an alternative to Traefik/Portainer. I have some earlier experience with the latter, but haven’t really looked into the former.
Stuff to learn & consider… thanks!