I'm trying to setup Træfik with ACME as described in the user guide. However, I get a fatal error "Unknown entrypoint "https" for ACME configuration". Is there something wrong with my configuration (docker-compose.yml)?
...
        image: traefik
        command:
            - --api
            - --docker
            - --docker.swarmMode
            - --docker.watch
            - --docker.network=http_proxy
            - --docker.exposedByDefault=false
            - --docker.domain=my.domain
            - --logLevel=DEBUG
            - --entryPoints="Name:http Address::80 Redirect.EntryPoint:https"
            - --entryPoints="Name:https Address::443 TLS"
            - --acme
            - --acme.storage=/certificates/
            - --acme.entryPoint=https
            - --acme.httpChallenge.entryPoint=http
            - --acme.email=mail@my.domain
            - --acme.onHostRule=true
...