Auction Away Docker Stable
auction-away
Project by Shoaib Ahmed and SaiKumar Immadi
Auction Away Docker Stable
Using this release, you can directly spin up many containers of our application.
First make sure you have docker installed on your system.
Download the release and unzip it.
Open a terminal and navigate to the project folder and run the following commands.
docker build -t auction-away -f AuctionAwayDockerfile .
docker run --name mongodb -p 27017:27017 -v data:/data/db -d mongo:latest
docker run --name auction-away -p 3000:3000 -d --link=mongodb:mongodb auction-away
If everything goes according to the plan, the containers should be up and running.
Open your browser and navigate to localhost:3000
to check.
If you need more detailed getting started guide or how to scale up our app, visit out Getting Started Docker Page.