Chris Sampson
Chris Sampson
Maybe not ideal, but I've used `pgrep`: ```yaml healthcheck: test: ["CMD-SHELL", "[ $$(pgrep -u www-data -c -f /usr/sbin/apache2) -gt 0 ] || exit 1"] ``` Doesn't prove the UI is...
Made a comment in #28 (https://github.com/osixia/docker-phpLDAPadmin/issues/28#issuecomment-468641499) about using this in a docker-compose.yml file.
Possibly worth adding some documentation/comments about setting this in a docker-compose.yml as a multiline string (I found this much easier to read and ultimately helped me find what was wrong...
> @ChrisSamo632 see feedback above. When I ran your branch on the command line, I got a bunch of NoClassDef errors because testcontainers has an explicit scope of `test` set...
With `Dependency-Check Core version 8.4.0` and `yarn 1.22.19`, we see the following log (when outputting to a `--log` file): ``` DEBUG - Launching: [yarn, audit, --offline, --json, --verbose] DEBUG -...
It seems #90 has been reverted, so it's difficult to know when this scenario is causing an error. https://stackoverflow.com/a/50702606 suggests a possible way of setting https Agent options globally for...
The problem with setting the `globalAgent` (from the above StackOverflow suggestion) is that it impacts all requests using the `https.globalAgent` within the Node instance. The `node-oauth` allows for us to...
Thanks for the fast reply. The suggested pin for `sarama` does seem to get over the Kafka Input problem, but downgrading the `aztables` leaves me with: > github.com/Azure/azure-sdk-for-go/sdk/data/aztables/internal > ../../../../../../go/pkg/mod/github.com/!azure/azure-sdk-for-go/sdk/data/[email protected]/internal/models.go:456:30:...
Ah, OK... so I think my `go.mod` file had become polluted with some old/incorrect dependencies - Removing all the `//implicit` requirements and just keeping the few I actually need, then...
A few of us have tried and the `host.docker.internal` address hasn't been working for us and we've (so far) not figured out why - it works between containers, but not...