Sign inSign up

anisulalam/dockerhero

By anisulalam

Updated 11 months ago

Learn Docker step-by-step with DockerHero – tutorials, commands & docs in English & Bangla.

Image
0

159

anisulalam/dockerhero repository overview

DockerHero

DockerHero is an interactive React app to learn Docker step by step — with tutorials, basic commands, and documentation in English and Bangla.

Features

  • Guided Docker tutorials (beginner → intermediate)
  • Interactive command examples and short explanations
  • Docs and examples in English and Bangla
  • Small demo site you can run locally with Docker

Quick start

Pull image
docker pull anisulalam/dockerhero:02
Run (detached)
docker run -d --name dockerhero -p 5173:5173 anisulalam/dockerhero:02

Then open: http://localhost:5173 in your browser.

Run (interactive / ephemeral)
docker run --rm -it -p 5173:5173 anisulalam/dockerhero:02
Stop the container
docker stop dockerhero
Remove the container
docker rm dockerhero

Notes

  • You must have Docker installed on your machine to pull and run the image. See: https://docs.docker.com/get-docker/
  • The container serves the app on port 5173 by default — map another host port if needed.
  • If you'd rather run the app from source, clone this repo and run npm install and npm run dev (Node + npm required).

Tag summary

Content type

Image

Digest

sha256:d854381bd

Size

477.4 MB

Last updated

11 months ago

docker pull anisulalam/dockerhero:02