Creating the TIBCO BusinessWorks Container Edition Base Docker Image for Windows Containers
Before you begin
- Download the TIBCO BusinessWorks Container Edition runtime zip file
bwce-runtime-windows-<version>.zip
, from http://edelivery.tibco.com.To download this file,
- Select Container from the Operating Systems dropdown list.
- Read and accept the TIBCO End User License Agreement.
- Select the radio button for Individual file Download.
- Click the
+ sign to view the individual components and select
bwce-runtime-windows-<version>.zip
.
- An installation of Docker.
- Procedure
- Navigate to https://github.com/TIBCOSoftware/bwce-docker/tree/windows-270-onwards and clone the
bwce-docker
repository to your local machine using the following command:git clone https://github.com/TIBCOSoftware/bwce-docker/tree/windows-270-onwards
- Copy the
bwce-runtime-windows-<version>.zip
file to theresources/bwce-runtime
folder. - Navigate to the cloned directory and open a command terminal and run the following command:
docker build -t TAG-NAME .
For example,
docker build -t tibco/bwce:latest .
By default, the
microsoft:nanoserver
image is used to create base Docker image for TIBCO BusinessWorks Container Edition. You can also change the image with the following Dockerfile content.- Dockerfile content for Windows:
FROM microsoft/nanoserver MAINTAINER TIBCO Software Inc. ADD . / CMD ["powershell", "c:/scripts/start.ps1"]
Note: Currently, TIBCO BusinessWorks Container Edition Windows Container supportsmicrosoft/nanoserver
as the base OS. - Dockerfile content for Windows:
ResultThe TIBCO BusinessWorks Container Edition base Docker image is now created. This base Docker image can now be used to create Docker application images.