Orthanc 1.13 + docker | Several config files

I’ve been using the docker image for a while. Now that there are 2 configuration files, I’m not sure which parameters I’m supposed to give to the entrypoint.

$ cat docker-entrypoint.sh 
#!/usr/bin/env bash
set -o errexit

if [[ $# -ne 1 ]]; then
	echo "FATAL ERROR: docker-entrypoint.sh expects a single parameter: the path to the configuration files(s)"
	exit 2
fi

It clearly asks for a single parameter, so I can’t lead it to several files. How will it know which one is the normal and advanced file?