1. Accessing AWS
- Access the AWS console at https://aws.amazon.com
- Log in with your credentials
- Select the desired region in the upper right corner
2. Creating a Table in DynamoDB
- In the AWS console search bar, type "DynamoDB"
- Click on "Create table"
- Define the table name
- Configure the partition key
- Choose capacity settings (on-demand or provisioned)
- Review and click on "Create table"
3. Exploring Docker Hub
- Visit https://hub.docker.com
- Create an account or log in (optional for searching images)
- Use the search bar to find official images
- Explore available tags for each image
- 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