(English) How to build a Docker Liferay 7.2 image with the SQL Server 2017 Database support

Antonio Musarra - Sep 10 '20 - - Dev Community

Ci spiace, ma questo articolo è disponibile soltanto in Inglese Americano. Per ragioni di convenienza del visitatore, il contenuto è mostrato sotto nella lingua alternativa. Puoi cliccare sul link per cambiare la lingua attiva.

In the recently published article How to build Docker Liferay 7.2 image with the Oracle Database support, I explained how to create the Liferay 7.2 Docker image by adding support to the Oracle database and in particular I explained how to do it using Blade CLI and Liferay Workspace.

In this article we will see how to achieve the same goal (from the previous article) but adding support for Microsoft SQL Server 2017. The Liferay Digital Experience Platform 7.2 Compatibility Matrix indicated SQL Server 2017 among the certified databases.

The source code of the Liferay Workspace it’s available on this GitHub repository liferay-72-sqlserver-docker-images.

1. What are the requirements

Before proceeding with the construction of the Docker image, the following requirements must be met.

  1. Installation or upgrade to the latest version of Blade;
  2. Docker Engine 18.x,19.x;
  3. An instance of an SQL Server 2017 database.

For the installation and updating of Blade CLI you could refer to this official Liferay documentation: Installing Blade CLI and Updating Blade CLI. The latest version is 3.8.0.201909200317. You can use this command blade version for checking your version.

Regarding the version of Docker I used both the version 18.09.8 and the 19.03.1. You can check your version with the docker version command. If you do not have an SQL Server 2017 instance ready for use, you might consider using this official Docker image from Microsoft’s Docker Hub account to your local computer and starting that image.

We need to have an instance of SQL Server already configured to host Liferay. No problem, in this article, How to setup Docker container SQL Server 2017 for Liferay Development Environment, I will explain how to do it.

2. Create the Liferay Workspace and Dockerfile

First of all we have to worry about creating the Liferay Workspace that we will use in order to configure and build our docker image. Let’s proceed in this way to create the Liferay Workspace.

$ blade init -v 7.2 liferay-72-sqlserver-docker-images$ cd liferay-72-sqlserver-docker-images$ blade gw createDockerfile
Enter fullscreen mode Exit fullscreen mode

The first command initializes the Liferay Workspace while the last command using the Gradle createDockerfile task that creates the Dockerfile. The Gradle task execution creates a new directory structure and the Dockerfile. The new directory structure and file created is shown below (command tree -L 3 build).

build└── docker ├── Dockerfile ├── deploy └── files
Enter fullscreen mode Exit fullscreen mode

The created Dockerfile is not good because it contains the reference to the base image of Liferay 7.1. We instead need version 7.2 of Liferay.

FROM liferay/portal:7.1.1-ga2COPY --chown=liferay:liferay deploy /etc/liferay/mount/deployCOPY --chown=liferay:liferay files /etc/liferay/mount/files
Enter fullscreen mode Exit fullscreen mode

In order for the Dockerfile to be created with the correct version of the Liferay image, the following content must be inserted in the gradle-local.properties file. The specific image has been set on the liferay.workspace.docker.image.liferay property. To find the possible property values you can set, see the official Liferay Portal Docker Hub’s Tags section (e.g., Liferay Portal Docker Tags). In our case we want to get the version 7.2 GA1 of Liferay Portal: _ liferay/portal:7.2.0-ga1 _

## Set the Liferay Portal Docker image to create your container from. The# default value points to Liferay Portal CE 7.2 GA1.## I could easily swing out to https://hub.docker.com/r/liferay/portal/tags# to find that there is an updated tag#liferay.workspace.docker.image.liferay=liferay/portal:7.2.0-ga1
Enter fullscreen mode Exit fullscreen mode

At this point we re-launch the Gradle createDockerfile task to recreate the new Dockerfile. Now the FROM directive of the Dockerfile contains the correct version of the image.

FROM liferay/portal:7.2.0-ga1COPY --chown=liferay:liferay deploy /etc/liferay/mount/deployCOPY --chown=liferay:liferay files /etc/liferay/mount/files
Enter fullscreen mode Exit fullscreen mode

Before proceeding further, you need to update the version of com.liferay.gradle.plugins.workspace from 2.0.4 to 2.1.5. The change must be made to the settings.gradle file. From version 3.8 of blade it is no longer necessary to update the version of the plugin because it is already correct.

buildscript { dependencies { classpath group: "com.liferay", name: "com.liferay.gradle.plugins.workspace", version: "2.1.5" classpath group: "net.saliman", name: "gradle-properties-plugin", version: "1.4.6" } repositories { maven { url "https://repository-cdn.liferay.com/nexus/content/groups/public" } }}apply plugin: "net.saliman.properties"apply plugin: "com.liferay.workspace"
Enter fullscreen mode Exit fullscreen mode

3. Docker image configuration

Now all that remains to do is configure our personalized image of Liferay 7.2 so that it is able to connect to an SQL Server database.

The configs/docker folder is where your configuration and overlay files for your Docker image. You’ll put files here such as your portal-ext.properties file, your osgi/configs files, overrides for the tomcat-9.0.x files (where x is going to be the version of tomcat included in the bundle), etc.

What do you need for configuring the new image?

  1. JDBC Driver for SQL Server 2017 (version 7.4);
  2. Liferay Portal Database All-in-One support (download from Maven Repository);
  3. Configuring the connection to the SQL Server database via portal-ext.properties

The commands shown below do:

  1. The creation of the portal-ext.properties file whose content is shown below;
  2. The creation of the directory configs/docker/tomcat/lib/ext where the SQL Server JDBC driver will be installed;
  3. The creation of the directory configs/docker/tomcat/webapps/ROOT/WEB-INF/lib where the Liferay driver will be installed for SQL Server database support;
  4. The copy of the driver liferay-portal-database-all-in-one-support in configs/docker/tomcat/webapps/ROOT/WEB-INF/lib.
$ touch configs/docker/portal-ext.properties$ mkdir -p configs/docker/tomcat/lib/ext$ mkdir -p configs/docker/tomcat/webapps/ROOT/WEB-INF/lib$ curl https://repo1.maven.org/maven2/it/dontesta/labs/liferay/portal/db/liferay-portal-database-all-in-one-support/1.1.3/liferay-portal-database-all-in-one-support-1.1.3.jar -o configs/docker/tomcat-9.0.17/webapps/ROOT/WEB-INF/lib/liferay-portal-database-all-in-one-support-1.1.3.jar
Enter fullscreen mode Exit fullscreen mode

The portal-ext.properties file you see, configuring the JDBC connection to the SQL Server database also enables access to the GogoShell.

#### JDBC## # # Set the JNDI name to lookup the JDBC data source. If none is set, # then the portal will attempt to create the JDBC data source based on the # properties prefixed with "jdbc.default.". # #jdbc.default.jndi.name=jdbc/LiferayPool # # Set the properties used to create the JDBC data source. These properties # will only be read if the property "jdbc.default.jndi.name" is not set. # # The default settings are configured for an in-memory database called # Hypersonic that is not recommended for production use. Please change the # properties to use another database. # # Add dynamic-data-source-spring.xml to the property "spring.configs" to # configure the portal to use one database cluster for read calls and # another database cluster for write calls. The convention is to create a # set of properties prefixed with "jdbc.read." to handle read calls and # another set of properties prefixed with "jdbc.write." to handle write # calls. These data sources can also be created via JNDI by setting the # properties "jdbc.read.jndi.name" and "jdbc.write.jndi.name". Note that # these settings, though separate, are a copy of the default settings with # the newly overridden values. # # # SQL Server # jdbc.default.driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver jdbc.default.username=liferay jdbc.default.password=lportal@DEV@72 jdbc.default.url=jdbc:sqlserver://172.17.0.3;databaseName=lportal\_dev#### Module Framework## # # Gogo Shell listen (ip:port) # module.framework.properties.osgi.console=11311
Enter fullscreen mode Exit fullscreen mode

At this point we re-launch the Gradle createDockerfile task, but specify the environment using the parameter _ -Pliferay.workspace.environment=docker _ (blade gw clean createDockerfile -Pliferay.workspace.environment=docker). This time the contents of the build/docker directory will also contain our configurations.

build/docker├── Dockerfile├── deploy└── files ├── portal-ext.properties └── tomcat ├── lib │ └── ext │ └── mssql-jdbc-7.4.1.jre8-shaded.jar └── webapps └── ROOT └── WEB-INF └── lib └── liferay-portal-database-all-in-one-support-1.1.3.jar
Enter fullscreen mode Exit fullscreen mode

Note that this step (the execution of the Gradle task createDockerfile) is not typically needed. I’m just using this command so I can see what will be used for the Docker image without actually creating the image yet.

4. Build and run the Docker image

At this point we can proceed with the build of our Docker Liferay 7.2 image with support for the SQL Server database. The Gradle buildDockerImage task does just that.

$ blade gw clean buildDockerImage -Pliferay.workspace.environment=docker
Enter fullscreen mode Exit fullscreen mode

The figure below shows the output of the Gradle task execution, while the following figure shows the details of the image just created.

Figure 1 - Output of the gradle buildDockerImage task

Figure 1 – Output of the gradle buildDockerImage task

As you can see from figure 2, the docker environment is used as a tag of our image (liferay-72-sqlserver-docker-images:docker).

Figure 2 - Output of the command docker image ls

Figure 2 – Output of the command docker image ls

Before creating and running our Liferay container, we need to make sure that the SQL Server instance is running but if you have read the article How to setup Docker container SQL Server 2017 for Liferay Development Environment I guess that SQL Server instance is running.

Figure 3 - Check if SQL Server 2017 instance is running

Figure 3 – Check if SQL Server 2017 instance is running

All that remains is to start our image and we can do it with the command to follow. The docker command makes sure to expose ports 8080 (web) and 11311 (Gogo Shell). It also makes sure to use the volume to allow us to easily deploy our applications, just copy the bundles into the $(pwd)/build/docker/deploy directory.

$ docker run -d -it --name Liferay72-SQLServer \-p 8080:8080 -p 11311:11311 \-v $(pwd)/build/docker:/etc/liferay/mount \-P liferay-72-sqlserver-docker-images:docker
Enter fullscreen mode Exit fullscreen mode

To view the Liferay logs you need to run the command docker logs -f Liferay72-SQLServer. The Docker command to access the machine is shown on the log.

Figure 3 - Output of the Liferay log file

Figure 3 – Output of the Liferay log file

You can monitor the status of our container using the docker ps command. Figure 4 shows the status and which TCP / IP ports are exposed.

Figure 4 - Output of the command docker ps

Figure 4 – Output of the command docker ps

Figure 5 shows the Oracle schema populated with Liferay tables at start-up.

Figure 5 - Get Liferay portal version from RELEASE_ table

Figure 5 – Get Liferay portal version from RELEASE_ table

Docker has become increasingly popular in today’s development lifecycle, by providing an automated way to package software and its dependencies into a standardized unit that can be shared cross-platform.

You can now manage Liferay’s Docker images in Liferay Workspace and push your Docker custom image on Docker Hub or other registry 😉 !

L'articolo (English) How to build a Docker Liferay 7.2 image with the SQL Server 2017 Database support sembra essere il primo su Antonio Musarra's Blog.


. . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player