Please enable JavaScript.
Coggle requires JavaScript to display documents.
Docker Lec 23, 24, 25, 26, 27 - Coggle Diagram
Docker Lec 23, 24, 25, 26, 27
Docker containers are
very much like a virtual
machine but they don't
have their own OS. They
consume resources only
when they are in need
Docker
-
-
It performs OS level
virtualization called
containerization in place
of Hardware level
virtualization that VM-
ware perfomrs
-
-
-
-
Dockerfile
-
FROM ubuntu
WORKDIR /tmp
RUN echo "docker img creation" >> /tmp/testfile
COPY testfile1 /tmp
ADD test.tar.gz /tmp
ENV name rajput
-
-