Versions Compared

Key

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

...

Code Block
docker pull odysseusol/nexmark
docker run  -d -p65440:p 65440 -p65441:65441 -p65442:65442 -p65443:65443:65440-65443 odysseusol/nexmark

#if you want to configure nexmark (Remark: Change YOURLOCALFOLDER withto you folder e.g. "c:/volume/nexmark", that contains NEXMarkGeneratorConfiguration.properties, absolute paths are necessary here)
docker run  -d -v "YOURLOCALFOLDER:/var/lib/nexmark" -p65440:p 65440 -p65441:65441 -p65442:65442 -p65443:65443:65440-65443 odysseusol/nexmark

#if you want to run nexmark even after restarts and configure nexmark (Remark: Change YOURLOCALFOLDER with you folder e.g. "c:/volume/nexmark")
docker run  -d --restart unless-stopped -v "YOURLOCALFOLDER:/var/lib/nexmark" -p65440:p 65440 -p6544165443:65441 -p65442:65442 -p65443:65440-65443 odysseusol/nexmark

Remark: If you want to configure in docker environments you could use the example files from: https://odysseus.informatik.uni-oldenburg.de/download/nexmark/config/. Only the file named NEXMarkGeneratorConfiguration.properties will be used. So change the name or adapt the file if you want to use the SLOW version.

...