Skip to content

Latest commit

 

History

History
40 lines (22 loc) · 1.17 KB

README.md

File metadata and controls

40 lines (22 loc) · 1.17 KB

Banking Utilities App

Rest API backend for payment card validation and mortgage payment calculation.

Prerequisities

In order to run this container you'll need docker installed.

Build

Steps to build a Docker image:

  1. Clone this repo

      git clone [email protected]:gregszalay/banking-utilities-backend.git
    
  2. Navigate to source folder

      cd banking-utilities-backend
    
  3. Build the image

      docker build -t bankingutilities-webapp .
    

    This could take a few minutes.

  4. Run the image's default command, which should start everything up. The -p option forwards the container's port 8080 to port 8080 on the host.

      docker run -p 8080:8080 bankingutilities-webapp
    
  5. Once everything has started up, you should be able to access the webapp via [http://localhost:8000/] on your host machine. Open: http://localhost:8080/ in your favourite browser.