Skip to content
This repository has been archived by the owner on Apr 27, 2020. It is now read-only.

escobot/calculadora-fibonacci

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

calculadora-fibonacci Build Status

La secuencia de Fibonacci es una serie de números.

Fórmula:

 F(0)=0; F(1)=1; F(n) = F(n-1) + F(n-2), n>1 

Prerequisites

Docker Setup

# start containers
docker-compose up

# (re)build images and start containers
docker-compose up --build

# start containers in background
docker-compose up -d

# stop containers
docker-compose down

Architecture

image