assignments of cloud computing subject
- virtualbox
- python
you can watch the demo video by clicking the picture below
- docker
- node docker image
docker pull node
sample_server.js is in the C:\Users\user\Documents\cloud_computing directory
docker run -it -p 3000:3000 -v C:\Users\user\Documents\cloud_computing:/src node node /src/sample_server.js
docker build --tag=myserver .
docker run -p 3000:3000 myserver
docker pull traefik:v2.6
docker pull tecnativa/docker-socket-proxy:latest
docker pull traefik/whoami:v1.7.1
docker network create traefik_public
docker network create socket_proxy
- making compose.yml : code of compose.yml
- send 2 or more requests
curl -H "Host: whoami.karvounis.tutorial" http://localhost/
curl -H "Host: whoami.karvounis.tutorial" http://localhost/
...
- then you can find that requests arrive at different host
- simple server with docker and nodejs image
- making docker image with Dockerfile
- Load Balancer with Traefik
- read AWS Vs Azure Vs GCP and write a report
- read MS SLA document and answer the questions
- read create-windows-virtual-machine-in-azure and practice
- read create-linux-virtual-machine-in-azure and practice
- read create-load-balancer-in-azure and practice
- read azure-virtual-machine-scale-set and practice



