You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the readme has this command for starting up the docker container. docker run -p 8080:8080 \ -e EXPRESS=true \ -e INSTALL=true \ ortussolutions/contentbox
But to get ContentBox in Docker to run I had to add -e DB_NAME=contentbox to the run parameters. Otherwise, I would get the following error: The system detected a custom DB_DRIVER configuration in the environment, but not all of the expected configuration key DB_NAME was not present.
/app/config/datasourceMixins.cfm: line 29
27: throw(
28: type="ContentBox.Docker.DatasourceExpectationException",
29: message="The system detected a custom "DB_DRIVER" configuration in the environment, but not all of the expected configuration key #configExpectedKey# was not present."
30: );
31: }
I'm also seeing a problem when using the Lucee5 tagged image: Message: lucee.commons.lang.ClassException: cannot load class through its string name, because no definition for the class with the specified name [org.h2.Driver] could be found caused by (java.lang.ClassNotFoundException:org.h2.Driver not found by lucee.core [64];java.lang.ClassNotFoundException:org.h2.Driver;)
The text was updated successfully, but these errors were encountered:
MAC OS 12.6
DOCKER Desktop: v 4.8.0 (78933)
Currently the readme has this command for starting up the docker container.
docker run -p 8080:8080 \ -e EXPRESS=true \ -e INSTALL=true \ ortussolutions/contentbox
But to get ContentBox in Docker to run I had to add
-e DB_NAME=contentbox
to the run parameters. Otherwise, I would get the following error:The system detected a custom DB_DRIVER configuration in the environment, but not all of the expected configuration key DB_NAME was not present.
I'm also seeing a problem when using the Lucee5 tagged image:
Message: lucee.commons.lang.ClassException: cannot load class through its string name, because no definition for the class with the specified name [org.h2.Driver] could be found caused by (java.lang.ClassNotFoundException:org.h2.Driver not found by lucee.core [64];java.lang.ClassNotFoundException:org.h2.Driver;)
The text was updated successfully, but these errors were encountered: