Docker - Fluid Topics - Latest

Fluid Topics Publisher (ftpub)

Category
Technical Notes
Audience
public
Version
Latest

ftpub is available as a pre-configured image in a Docker registry. The following pre-configured tags are available:

  • latest is an alias for the latest stable release.
  • beta is an alias for the latest test release.
  • alpha is an alias for an early test release.

Using the alpha version is not recommended.

It is possible to run ftpub in a Docker container as follows:

  1. Open a terminal window, and run the following command to pull the latest version of the image:

    docker pull fluidtopics/publisher
    

    It is possible to target a different version of the image as follows:

    docker pull fluidtopics/publisher:beta
    
  2. Go to the directory containing the content to publish.

  3. Run the following command to create a volume named doc containing the content to publish:

    docker run -v $PWD:/doc -it fluidtopics/publish /bin/bash
    
  4. Run the following command to display the help tool:

    ftpub --help
    

If not yet familiar with basic Docker concepts, see Get started.