Arthur Barr

Results 97 comments of Arthur Barr

Thanks for the PR. The copyright statement needs to be updated to reflect the year of the most recent change. Also you need to indicate that you accept the CLR:...

I wonder if the tar.gz hasn't downloaded properly. My copy of `mqadv_dev911_ubuntu_x86-64.tar.gz` is 839,931,811 bytes. Could you perhaps check your copy, and if it isn't that size, just delete it,...

If you're using WSL, you need to look at this [guide by Microsoft]( https://blogs.msdn.microsoft.com/commandline/2017/12/08/cross-post-wsl-interoperability-with-docker/) to get bind-mounts working. There's also a link to this in our [doc](https://github.com/ibm-messaging/mq-container/blob/master/docs/building.md).

Can you use a bind-mounted volume with Docker? For example: ``` echo "Hello world" > /tmp/host.file docker run --rm -it --volume /tmp/host.file:/var/container.file ubuntu:16.04 cat /var/container.file ``` That should print "Hello...

I think that might happen if Docker can't find the file on the host. The volume in the bind-mount needs to be a fully qualified path.

I mean that the host side of the bind mount directory (before the ":") needs to be a fully qualified path (not a relative path). It would help if you...

I'm afraid that I don't know enough about WSL to be able to help you get that going. However, for all the apparent complexity of the mq-container build, it all...

We have a healthcheck command called `chkmqhealthy`, which we use for a Kubernetes liveness probe. I think what you're asking for is a Docker Swarm compatible health check. We'll have...

My guess would be that you should put the fully qualified path to the command in, for example `/usr/local/bin/chkmqhealthy`

The only issues I've ever seen are due to Kubernetes clusters which are really slow. There really isn't much code in `chkmqready` to go wrong (famous last words).