Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

In this Pagearticle

Table of Contents
maxLevel2

Overview

SnapLogic support for the Groundplex (also known as an on-premises premise Snaplex) on a Docker container empowers customers to optimize IT infrastructure costs while benefiting from containerized technology.

The SnapLogic Docker image is based on CentOS 7. Since we host the Docker image in the Docker Hub, you need to perform a simple pull operation to retrieve the latest Docker image.

...

...

  1. Retrieve the latest Docker image from Docker Hub using the following pull command to retrieve the latest version of the Docker image:

    Paste code macro
     docker pull snaplogic/snaplex:latest


  2. In SnapLogic Manager, navigate to your target Groundplex instance , and click it to display the Update dialog.

  3. Click In the Downloads tab, and click in the Configuration option to download the .slpropz file for your Groundplex node.

Once After downloading the configuration file is downloaded, you are ready to launch your Groundplex as a Docker container.

...

  1. Create a local directory <CONFIG_PATH>/etc, and add the slpropz configuration file to the folder, ensuring that the file extension is .slpropz.
  2. Create an empty log folder <LOG_PATH>/log.   the The JCC logs will be are written to this directory.
  3. Run Enter the following command to create and run the latest version of the Docker container image:

    Paste code macro
    docker run -itd -h <Container_Host_Name> \
    -p 8090:8090 -p 8081:8081 \
    -v <CONFIG_PATH>/etc:/opt/snaplogic/etc \
    -v <LOG_PATH>/log:/opt/snaplogic/run/log \
    snaplogic/snaplex:latest 

    where:

    • -p enables port mapping, so that you can use the local dashboard and FeedMaster. You can also use other Docker networks, if required.
    • -v enables you to specify the Docker volume to use. Store the <Snaplex_Name>.slpropz in the /opt/snaplogic/etc directory.

Note

For this command to work, you need to complete the following tasks:

  • Expose ports 8090 and 8081 for standard Snaplex nodes.
  • Expose port 8084 for FeedMaster nodes.
  • Mount the configuration file to the /opt/snaplogic/etc directory.


Example


Info

Depending on how you install Docker is installed, the use of sudo might be required., you may need to use sudo. For more information on the Docker run command, review the documentation on see Docker Run.


...

See Also