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:latest
Run the image:
docker run -p 3000:3000 carlohcs/basic-app:latest
Access in the browser at http://localhost:3000
.
To run the Kubernetes application:
For dev:
kubectl apply -f k8s/dev
For prod:
kubectl apply -f k8s/prod
Access in the browser at http://localhost:30001
.