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
ISLE lets users choose what services to deploy with variables in the .env, but whether or not they're exposed publicly isn't configurable. If we take our current docker-compose.*.yml files, we can set these up to run off of config using the traefik.enable label.
I see a lot of the yml files have comments that say do not expose in production. As part of this change would it be worth changing the defaults to false, so that they need to be manually exposed in the .env? That way we could also include these comments in the .env and if someone wants to turn them on they have been warned.
ISLE lets users choose what services to deploy with variables in the
.env
, but whether or not they're exposed publicly isn't configurable. If we take our currentdocker-compose.*.yml
files, we can set these up to run off of config using thetraefik.enable
label.For example, in docker-compose.activemq.yml, we could do
- traefik.enable="${EXPOSE_ACTIVEMQ}"
and then we could set
$EXPOSE_ACTIVEMQ=true
to enable or$EXPOSE_ACTIVEMQ=false
to disable the route using the.env
file.We'd need to do this for:
The text was updated successfully, but these errors were encountered: