{a Docker exploration lab}
ยป submit a suggestion
ยท
ยป report a bug
ยท
ยป contact
This is a dedicated space for experimenting with Docker's functionalities and capabilities.
-
Docker
-
Node.js & npm
-
React.js & Vite
-
MongoDB & Express.js
-
Next.js & Tailwind CSS
- [ ]
- [ ]
Docker Desktop: Settings > Advanced > System
docker pull ubuntu
docker run-it ubuntu
# pull
docker pull node
# create a Dockerfile
"hello-docker/Dockerfile"
# build
cd hello-docker
docker build -t hello-docker .
# check built images
docker images
# run/containerize
docker run hello-docker
docker run -it hello-docker sh
- Fork the Project
- Create your Branch (
git checkout -b my-branch
)- Commit your Changes (
git commit -m 'add my contribution'
)- Push to the Branch (
git push --set-upstream origin my-branch
)- Open a Pull Request
This project is licensed under MIT.