Who am I - Traefik

Tiny Go webserver that prints OS information and HTTP request to output.

Example docker-compose file:

services:
  whoami:
    image: traefik/whoami
    container_name: whoami
    labels:
      - "traefik.enable=true"
      - "traefik.http.routers.whoami.rule=Host(`${WHOAMI_URL}`)"
      - "traefik.http.services.whoami.loadbalancer.server.port=80"
      - "traefik.http.routers.whoami.entrypoints=websecure"
    networks:
      - traefik_local

networks:
  traefik_local:
    external: true