Lucee Docker: I cant load bundled jars

Thank you!

Re: The info on the Custom Jars doc page…

In the Docker Tomcat version it seems that
{local web context}/WEB-INF/lucee/lib/
translates into
/usr/local/tomcat/lib/
so in the Dockerfile
COPY jedis-4.3.0-m1.jar /usr/local/tomcat/lib/jedis-4.3.0-m1.jar

and
{Lucee Installation Folder}/lucee-server/context/lib/
translates into
/opt/lucee/server/lucee-server/context/lib/
so
COPY jedis-4.3.0-m1.jar /opt/lucee/server/lucee-server/context/lib/jedis-4.3.0-m1.jar

depending on which context you want it in.

Now I understand. Thanks.
Murray

1 Like