You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If using docker-gen and nginx separately instead of nginx-proxy, the official template does not work when -only-exposed (or -only-published) is used.
After debugging, I found out that the root cause is $CurrentContainer is not initialized properly. This is expected because the docker-gen container does not expose any ports. So
{{ $CurrentContainer := where $ "ID" .Docker.CurrentContainerID | first }}
cannot find the docker-gen container inside $ (the list of all containers)
A possible solution is to explicitly expose .CurrentContainer as a top-level argument to the template.
The text was updated successfully, but these errors were encountered:
If using
docker-gen
andnginx
separately instead ofnginx-proxy
, the official template does not work when-only-exposed
(or-only-published
) is used.After debugging, I found out that the root cause is
$CurrentContainer
is not initialized properly. This is expected because thedocker-gen
container does not expose any ports. Socannot find the
docker-gen
container inside$
(the list of all containers)A possible solution is to explicitly expose
.CurrentContainer
as a top-level argument to the template.The text was updated successfully, but these errors were encountered: