- Published on
Shipping ExtentX in a docker container
- Authors
- Name
- Vimalraj Selvam
- @email2vimalraj
Dear Readers,
I'm happy to announce that I had successfully made an attempt and containerised the ExtentX in a docker. Now you can easily setup the entire infrastructure required for ExtentX in couple of seconds.
Installation
- Install Docker
- Pull the mongo image from the docker hub:
docker pull mongo
- Pull the extentx image from the docker hub:
docker pull email2vimalraj/extentx
Usage
Run Mongo server
docker run -p 27017:27017 -d --name extent-mongo mongo
Run ExtentX
docker run --link extent-mongo:mongodb --name extent-app -p 1337:1337 -d email2vimalraj/extentx
Goto http://localhost:1337 in your browser to view the ExtentX dashboard.
P.S: Hit Like button if you found this useful.