Versions Compared

Key

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

...

Sample Docker Build and Run Commands

Code Block
languageactionscript3none
## Build Docker Image from Dockerfile
docker build -t iguana-app:1.0 .

### Run Docker image with Iguana Dashboard and HTTP ports binding
docker run -p 8543:6543 -p 8544:6544 --name IguanaDocker -it iguana-app:1.0 bash

...