Skip to content

Create a docker container that contains a MATLAB install

License

Notifications You must be signed in to change notification settings

DanRRRR/matlab-dockerfile

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Create a MATLAB Container Image

This repository shows you how to build and customize a Docker container for MATLAB® and its toolboxes, using the MATLAB Package Manager (mpm).

You can use this container image as a scalable and reproducible method to deploy and test your MATLAB code.

You can also download pre-built images based on this Dockerfile here.

Requirements

Build Instructions

Get Sources

# Clone this repository to your machine
git clone https://github.com/mathworks-ref-arch/matlab-dockerfile.git

# Navigate to the downloaded folder
cd matlab-dockerfile

Build & Run Docker Image

# Build container with a name and tag of your choice.
docker build -t matlab:r2023a .

# Run the container. Test the container by running an example MATLAB command such as ver.
docker run --init --rm -e MLM_LICENSE_FILE=27000@MyServerName matlab:r2023a -batch ver

The Dockerfile defaults to building a container for MATLAB R2023a.

The example command ver displays the version number of MATLAB and other installed products. For more information, see ver. For more information on running the container, see the section on Run the Container.

Note

Using the --init flag in the docker run command ensures that the container stops gracefully when a docker stop or docker kill command is issued. For more information, see the following links:

Customize the Image

Customize Products to Install Using MATLAB Package Manager (mpm)

The Dockerfile defaults to installing MATLAB with no additional toolboxes or products into the /opt/matlab folder.

To customize the build, edit the mpm commands in the Dockerfile's usage. You can choose products, release, and destination folder.

Specify products to install as a space-separated list with the --products flag, and specify an install path with the --destination flag. For more information, see MPM.md.

For example, to build a container with MATLAB and Deep Learning Toolbox installed under the path /tmp/matlab, change the corresponding lines in the Dockerfile as follows:

RUN wget -q https://www.mathworks.com/mpm/glnxa64/mpm && \ 
    chmod +x mpm && \
    ./mpm install \
        --release=${MATLAB_RELEASE} \
        --destination=/tmp/matlab \
        --products MATLAB Deep_Learning_Toolbox && \
    rm -f mpm /tmp/mathworks_root.log && \
    ln -s /tmp/matlab/bin/matlab /usr/local/bin/matlab

Customize MATLAB Release and License Server

The Dockerfile supports the following Docker build-time variables:

Argument Name Default value Effect
MATLAB_RELEASE r2023a The MATLAB release you want to install. Must be lower-case, for example: r2019b.
LICENSE_SERVER unset The port and hostname of the machine that is running the Network License Manager, using the port@hostname syntax. For Example: 27000@MyServerName

Use these arguments with the the docker build command to customize your image. Alternatively, you can change the default values for these arguments directly in the Dockerfile.

Build an Image for a Different Release of MATLAB

# Builds an image for MATLAB R2019b
docker build --build-arg MATLAB_RELEASE=r2019b -t matlab:r2019b .

Build an Image with License Server Information

Including the license server information with the docker build command avoids having to pass it when running the container.

# Build container with the License Server
docker build -t matlab:r2023a --build-arg LICENSE_SERVER=27000@MyServerName .

# Run the container, without needing to pass license information
docker run --init --rm matlab:r2023a -batch ver

Use the Network License Manager

This container requires a Network License Manager to license and run MATLAB. You will need either the port and hostname of the Network License Manager or a network.lic file.

Step 1: Contact your system administrator who can provide one of:

  1. The address to your server, and the port it is running on. For example: [email protected]

  2. A network.lic file which contains the following lines:

    # Sample network.lic
    SERVER MyServerName.example.com <optional-mac-address> 27000
    USE_SERVER
  3. A license.dat file. Open the license.dat file, find the SERVER line, and either extract the port@hostname or create a network.lic file by copying the SERVER line and adding a USE_SERVER line below it.

    # snippet from sample license.dat
    SERVER MyServerName.example.com <mac-address> 27000

Step 2: Use port@hostname or network.lic file with either the docker build or docker run commands.

With the docker build command, either:

  • Specify the LICENSE_SERVER build-arg.

    # Example
    docker build -t matlab:r2023a --build-arg LICENSE_SERVER=27000@MyServerName .
  • Use the network.lic file:

    1. Place the network.lic file in the same folder as the Dockerfile.
    2. Uncomment the line COPY network.lic /opt/matlab/licenses/ in the Dockerfile.
    3. Run the docker build command without the LICENSE_SERVER build-arg:
    # Example
    docker build -t matlab:r2023a .

With the docker run command, use the MLM_LICENSE_FILE environment variable. For example:

docker run --init --rm -e MLM_LICENSE_FILE=27000@MyServerName matlab:r2023a -batch ver

Run the Container

If you did not provide the license server information while building the image, then you must provide it when running the container. Set this environment variable MLM_LICENSE_FILE using the -e flag with the network license manager's location as port@hostname.

# Start MATLAB, print version information, and exit:
docker run --init --rm -e MLM_LICENSE_FILE=27000@MyServerName matlab:r2023a -batch ver

You can run the container without specifying MLM_LICENSE_FILE, if you provided the license server information when building the image, as shown in the examples below.

Run MATLAB in an Interactive Command Prompt

To start the container and run MATLAB in an interactive command prompt, execute:

docker run --init -it --rm matlab:r2023a

Run MATLAB in Batch Mode

To start the container, run a MATLAB command and exit, execute:

# Container runs the command RAND in MATLAB and exits.
docker run --init --rm matlab:r2023a -batch rand

Run MATLAB with Startup Options

To override the default behavior of the container and run MATLAB with any set of arguments, such as -logfile, execute:

docker run --init -it --rm matlab:r2023a -logfile "logfilename.log"

To learn more, see the documentation: Commonly Used Startup Options

More MATLAB Docker Resources

Help Make MATLAB Even Better

You can help improve MATLAB by providing user experience information on how you use MathWorks products. Your participation ensures that you are represented and helps us design better products. To opt out of this service, delete the following line in the Dockerfile:

ENV MW_DDUX_FORCE_ENABLE=true MW_CONTEXT_TAGS=MATLAB:DOCKERFILE:V1

To learn more, see the documentation: Help Make MATLAB Even Better - Frequently Asked Questions.

Feedback

We encourage you to try this repository with your environment and provide feedback. If you encounter a technical issue or have an enhancement request, create an issue here.


Copyright (c) 2021-2022 The MathWorks, Inc. All rights reserved.


About

Create a docker container that contains a MATLAB install

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 74.3%
  • Dockerfile 25.7%