오늘 할일
1. 인프라 강의
2. LeetCode
3. 소프트웨어 공학 공부
4. 영화보기
오늘 한일
1. 인프라 강의_오픈소스를 활용한 DevOps
docker container run ubuntu:latest /bin/echo 'Hello World!'
docker container run -d -p 80:80 --name webserver nginx
docker search --limit 25 --filter=atars=3
docker image pull
docker image ls --all --digests
docker image inspect centos
docker image rm --force --no-prune
docker image tag
docker image push
docker container run --attach --cidfile --detach --interactive --tty --rm
docker container ls
docker container start, stop, restart
docker container rm
docker container logs
docker container run -it --name 'runtest' centos /bin/ls -al
docker container run --rm -it --name 'runtest' centos /bin/ls -al
docker container run -d centos /bin/ping localhost
docker container logs -t c79
docker container stop c79