Giter VIP home page Giter VIP logo

lucee-dockerfiles's Introduction

Lucee Docker Images

docker pulls

Lucee application engine running on Apache Tomcat J2EE application server.

Supported tags and respective Dockerfile links

Latest stable release (5.3)

Tomcat 9.0 with OpenJDK 11 (recommended)

  • 5.3.4.77-tomcat9.0-jdk11-openjdk, 5.3.4.77, 5.3, latest (Dockerfile)
    • 5.3.4.77-nginx-tomcat9.0-jdk11-openjdk, 5.3.4.77-nginx, 5.3-nginx (Dockerfile.nginx)

Tomcat 9.0 with OpenJDK 8

How the tags work

The Lucee Docker image tags follow a naming convention which is used to produce "simple tags" that are updated with each release (e.g. 5.3, 5.3-nginx) as well as "full tags" which allow for very specific version targeting (e.g. 5.3.4.77-tomcat9.0-jdk11-openjdk).

The tag naming convention is;

LUCEE_VERSION[-RELEASE_TYPE][-light][-nginx][-TOMCAT_VERSION-JRE_VERSION]

  • LUCEE_VERSION is the Lucee Version number string. For simple tags it may optionally be in the MAJOR.MINOR format (e.g. 5.3) and for full tags it's in the MAJOR.MINOR.PATCH.BUILD format (e.g. 5.3.4.77). Snapshot, RC and Beta builds always include the full version number.
  • RELEASE_TYPE is the type of release; omitted for Releases, otherwise SNAPSHOT, RC or BETA
  • -light (optional) is a build with the Lucee "Light" JAR file, WITHOUT any extensions (users must install extensions separately, this includes database drivers, ORM, ESAPI, S3, image handling, etc)
  • -nginx (optional) is a build with the NGINX web server bundled and configured
  • -TOMCAT_VERSION-JRE_VERSION is the Tomcat major and minor version and OpenJDK major version of the build to allow users to choose between different combinations (e.g. tomcat9.0-jdk11-openjdk vs tomcat9.0-jdk8-openjdk). This is omitted for "simple tags" where the recommended Tomcat and OpenJDK versions are used.

Note: The official Tomcat images have removed support for Alpine and so the Lucee -alpine variant can no longer be supported. If the Tomcat base images add support for Alpine in the future then we will look to support the -alpine variant again.

Previous stable release (5.2)

Tomcat 8.5 with OpenJDK 8

Bleeding edge Snapshot / RC / Beta (5.3)

  • 5.3.5.78-SNAPSHOT-tomcat9.0-jdk11-openjdk, 5.3.5.78-SNAPSHOT
    • 5.3.5.78-SNAPSHOT-nginx-tomcat9.0-jdk11-openjdk, 5.3.5.78-SNAPSHOT-nginx
  • 5.3.5.78-RC-tomcat9.0-jdk11-openjdk, 5.3.5.78-RC
    • 5.3.5.78-RC-nginx-tomcat9.0-jdk11-openjdk, 5.3.5.78-RC-nginx
  • 5.3.1.15-BETA-tomcat9.0-jre11, 5.3.1.15-BETA
    • 5.3.1.15-BETA-nginx-tomcat9.0-jre11, 5.3.1.15-BETA-nginx

The SNAPSHOTS Docker image builds are automatically generated after a successful Lucee build. The 5.3.5.78 version number above is just an example of the latest SNAPSHOT version number; check the Docker Hub tags and/or the Lucee Downloads page to see the latest SNAPSHOT version numbers.

The RC and Beta builds are manually triggered when they are announced.

Example Project Dockerfile

For the latest stable release with Tomcat only:

FROM lucee/lucee:5.3

# Lucee configs
COPY config/lucee/ /opt/lucee/web/
# Code
COPY www /var/www

For the latest stable release with NGINX and Tomcat:

FROM lucee/lucee:5.3-nginx

# NGINX configs
COPY config/nginx/ /etc/nginx/
# Lucee configs
COPY config/lucee/ /opt/lucee/web/
# Code
COPY www /var/www

Features

Java optimisation tweaks

Optimised for single-site application

The default configuration serves a single application for any hostname on the listening port. Multiple applications can be supported by editing the server.xml in the Tomcat config.

Using this image

Accessing the service

Lucee server's Tomcat installation listens on port 8888.

This base image exposes port 8080 to linked containers but its not used. You must publish or expose port 8888 if you wish to access Tomcat from your installation.

Accessing the Lucee Admin

The Lucee Admin URL is /lucee/admin/ from the exposed port. No admin passwords are set.

THIS IS NOT A SECURE CONFIGURATION FOR PRODUCTION ENVIRONMENTS! It is strongly recommended that you secure the container by:

  • Changing the server password
  • Using IP or URL filtering to restrict access to the Lucee Admin
  • Following recommended security practices such as the Lucee Lockdown Guide

The NGINX tagged Docker images are configured to deny access to the Lucee Admin by default in the default.conf.

Folder locations

Web root for default site: /var/www

Configuration folders:

  • Tomcat config: /usr/local/tomcat/conf
  • Lucee config for default site: /opt/lucee/web
  • Lucee server context: /opt/lucee/server/lucee-server/context

Log folders:

  • Tomcat logs: /usr/local/tomcat/logs
  • Lucee logs for default site: /opt/lucee/web/logs

Environment variables

The default image contains scripts that use the following environment variables if they are set in the container.

LUCEE_JAVA_OPTS: Additional JVM parameters for Tomcat. Used by /usr/local/tomcat/bin/setenv.sh. Default: "-Xms64m -Xmx512m".

Legacy Lucee Base Images

The older Lucee Base Images will remain available for the projects that are using them, though the build process for those images is considered "legacy" as they have been superseded by the new build matrix builds.

The base images can be accessed in the existing Docker Hub repositories and the source is now in the legacy branch;

https://github.com/lucee/lucee-dockerfiles/tree/legacy

Lucee 5.2 (Legacy builds)

Lucee 5.1 (Legacy builds)

Lucee 5.0 (Legacy builds)

Lucee 4.5 (Legacy builds)

Contributing to this Project

The Lucee Dockerfiles project is maintained by the community. Chief protagonist is @justincarter (Justin Carter of Daemon). Bug reports and pull requests are most welcome.

Special thanks to @rye (Kristofer Rye) and @hawkrives (Hawken Rives) for their work on the Travis build matrix.

License

The Docker files and config files are available under the MIT License. The Lucee engine, Tomcat, NGINX and any other softwares are available under their respective licenses.

lucee-dockerfiles's People

Contributors

justincarter avatar modius avatar rye avatar jamiejackson avatar andyj avatar boomfish avatar goochjj avatar ryanguill avatar tomchiverton avatar dependabot[bot] avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.