A simple basic app where we can run without too much issues. It contains Docker, Kubernetes and AWS ECS examples to run.
Build the image:
docker build . -t carlohcs/basic-app:latestRun the image:
docker run -p 3000:3000 carlohcs/basic-app:latestAccess in the browser at http://localhost:3000.
To run the Kubernetes application:
For dev:
kubectl apply -f k8s/devFor prod:
kubectl apply -f k8s/prodAccess in the browser at http://localhost:30001.