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.
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:
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.