📅 My Learning Journey
Learning progress chronologically
Tuesday, December 02, 2025 3 posts
📅 Docker Volumes
Docker
Volumes are persistent data stores for containers, created and managed by Docker. You can create a volume explicitly using the docker volume create command, or Docker can create a vo...
📅 Amazon Elastic Block Store (Amazon EBS)
AWS Storage Services
Amazon Elastic Block Store (Amazon EBS) Provide scalable, high-performance block storage resources that can be used with Amazon Elastic Compute Cloude (Amazon EC2) instances EC2 Volume is a...
JSON Web Tokens (JWT) A JWT consists of 3 parts* 1.Header: Contains metadata of token > Type (JWT), signing algorithm. {
"alg": "HS256", #Algorithem for siging
"typ": "JWT" # Token...