Impressed with handson learning from katacoda
Happy Learning!!!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Deploying Your First Docker Container | |
https://katacoda.com/courses/docker/deploying-first-container | |
My Notes | |
#search docker image | |
docker search redis | |
#run command in background | |
docker run -d redis | |
#find running containers | |
docker ps | |
#Run docker | |
docker run -d --name redisHostPort -p 6379:6379 redis:latest | |
#save data | |
docker run -d --name redisMapped -v /opt/docker/data/redis:/data redis | |
Impressive Course - https://katacoda.com/courses/container-runtimes/what-is-a-container | |
My Container Notes | |
Containers are just normal Linux Processes | |
namespaces - limit what processes can see | |
Commands | |
#Launch the following Redis container | |
#docker run [OPTIONS] IMAGE [COMMAND] [ARG...] [flags] | |
#container name db | |
#image redis:alpine | |
docker run -d --name=db redis:alpine | |
#check running process | |
ps aux | grep redis-server |
No comments:
Post a Comment