1. Accessing AWS

2. Creating a Table in DynamoDB

  1. In the AWS console search bar, type "DynamoDB"
  2. Click on "Create table"
  3. Define the table name
  4. Configure the partition key
  5. Choose capacity settings (on-demand or provisioned)
  6. Review and click on "Create table"

3. Exploring Docker Hub

  1. Visit https://hub.docker.com
  2. Create an account or log in (optional for searching images)
  3. Use the search bar to find official images
  4. Explore available tags for each image
  5. Check documentation and usage examples

<aside> 💡 Tip: Always prefer official or verified images on Docker Hub for better security and reliability.

</aside>

Basic Docker Commands

# Search for an image
docker pull image-name

# List local images
docker images

# Run a container
docker run image-name

# List running containers
docker ps