snowplow / iglu-server

A RESTful schema registry
Other
13 stars 9 forks source link

Remove the --help default docker command #107

Closed istreeter closed 1 year ago

istreeter commented 2 years ago

Ever since the 0.7.0 release, the config file is technically optional, see #65. The typesafe config library allows configuring iglu-server via just java system properties or environment variables.

So it should be possible run the server with a command like this:

docker run \
  -e JDK_JAVA_OPTIONS=< lots of configuration here > \
  snowplow/iglu-server

But this doesn't quite work! Because currently we explicit set the default CMD to be --help, which prevents the server from starting up properly.