I have a very simple dockerfile for Minio
FROM minio/minio
CMD server /data --console-address ":9001"
This command works locally on my computer, but doesn’t seem to work in Render
I’ve been getting this error message in logs
‘/bin/sh’ is not a minio sub-command. See ‘minio --help’.
I’m going to guess that this is because of the way that render runs Docker containers internally
Any ideas how to get around this?
P.S. I’ve also tried the command like this without any luck
FROM minio/minio
CMD ["server", "/data", "--console-address", "':9001'"]
(notice the inner quotes in the port number argument)