Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 698 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 698 Bytes

Client server application to calculate Fibonacci values

From: Docker and Kubernetes: The Complete Guide Udemy course

Uses Postgres and Redis as storage. Nginx to route requests. Build with docker and docker-compose.

To run application in development mode:

docker-compose -f docker-compose.dev.yml ACTION

Running application in developer mode

docker-compose -f docker-compose.dev.yml up --build -d

To stop application in developer mode

docker-compose -f docker-compose.dev.yml down

Nginx

Routes all requests that starts with /api to server. All other are directed to client.

Accesing the application

To access the application go to http://localhost:3050