Versions Compared

Key

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

This user guide explains how to launch the pnc-simulator/ACTN simulator and initialize it with administrative APIs. "pnc-simulator" is our internal project name for ACTN simulator. Throughout this guide, terms like "pnc-simulator", "ACTN simulator" and "the simulator" are used interchangeably.

...

Code Block
docker pull dzhanghuawei/pncsimulator:1.0.5-SNAPSHOTlatest

Step 2. Start the simulator container(s)

...

Code Block
docker run –p 18181:8181 –d –name pncsimu-18181 –t dzhanghuawei/pncsimulator:1.0.5-SNAPSHOTlatest

It should be noted that, we redirect the request from host:18181 to container:8181. You can configure whatever port, mapping to container:8181 at your discretion. Be careful, if setting up multiple domain controllers, make sure to assign different external ports for them.

...