Versions Compared

Key

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

...

To run the Snaplex node from Docker:

  1. Create a local directory <CONFIG<Configuration_PATH>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<Log_PATH>Path>/log. The JCC logs are written to this directory.
  3. 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.

...