This has been reported in #8, and is created as a new issue for tracking when it is fixed:
Removing the docker.Client check in #10 (and not adding it to the CLI class) has resolved the -H issue. The next issue I ran into was the CREATED_AT_PATTERN regex. Specifically, my time component was:
2016-12-06 18:09:58 -0500 EST
The regex pattern doesn't like the - timezone and can be fixed as:
I tried (+|-) but it creates an additional, invalid group. The . will match anything but this isn't too risky since the rest of the pattern has to work.
This has been reported in #8, and is created as a new issue for tracking when it is fixed:
Removing the docker.Client check in #10 (and not adding it to the CLI class) has resolved the -H issue. The next issue I ran into was the CREATED_AT_PATTERN regex. Specifically, my time component was:
The regex pattern doesn't like the - timezone and can be fixed as:
I tried (+|-) but it creates an additional, invalid group. The . will match anything but this isn't too risky since the rest of the pattern has to work.