Lander is basically a webserver implementation which pulls information about running containers from the docker daemon every time it gets a http GET request at '/'. Based on it's configuration, lander will decide which and how to generate links to running containers on this host.
To do so, it needs the following labels at your docker containers:
lander.enable: if set (e.g. to 'true'), lander will start to parse additional lanbels
lander.group: indicates the group, under which lander will put the application inside the index.html
lander.name: gives the name to be shown as a link in the index.html
lander.exclude: comma separated list of web contexts and ports which shouldn't be handled by lander. Note: Ports need a colon in front of the port number. (e.g. lander.exclude=/app, :8080)
Lander receives it's configuration completely via environment variables. At the moment you can set:
LANDER_DOCKER: absolute path (including protocoll) to the docker daemon socket (e.g. "unix:///var/run/docker.sock" - which is the standard path)
LANDER_TRAEFIK: if true, lander will search for Traefik specific labels and use them to create http application paths. Possible values:
true: standard
false
LANDER_EXPOSED: if true, lander will search for exposed container ports. possible values:
true
false: standard
LANDER_LISTEN: the ip address and port on which lander will listen for requests (e.g. 192.168.1.1:9000, default: ":8080")
LANDER_TITLE: string which will deals as headline in the index.html (standard: "LANDER")
LANDER_HOSTNAME: should be the hostname of the docker host. used to generate hyperlinks. (Attention: lander won't work correctly without this variable set!**)
At the moment, lander can in fact find publicly exposed ports of docker containers, but will assume that the applications answer via http, not https. When searching for hyperlinks via traefik labels, lander will assume a https connections, since traefik is mostly used as an ssl endpoint. In addition to that parsing of a traefik hostname parameter is not possible at the moment.