An open API service indexing awesome lists of open source software.

https://github.com/usmanmern/dockerlearning


https://github.com/usmanmern/dockerlearning

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# dockerLearning
dokerfile --->DockerImage -->multiple containers
!
!
v
docker container

docker.com

hub.docker.com

docker pull mysql

docker run --name mysql-c1 -e MYSQL_ROOT_PASSWORD=usman -d mysql

docker exec -it mysql-c1 mysql -u root -p

docker pull nginx

docker run --name nginx-c1 -d -p 8080:80 nginx