Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!
We spend hours on Instagram and YouTube and waste money on coffee and fast food, but wonβt spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!
Learn from Guru Rajesh Kumar and double your salary in just one year.
FROM β Sets the base image
MAINTAINER β Sets the author field of the generated images
RUN β Execute commands in a new layer on top of the current image and commit the results
CMD β Allowed only once (if many then last one takes effect)
LABEL β Adds metadata to an image
EXPOSE β Informs container runtime port
ENV β Sets an environment variable
ADD β Copy new files, directories
COPY β Copy new files or directories into the filesystem of the container
ENTRYPOINT β Allows you to configure a container that will run as an executable
VOLUME β Creates a mount point and marks it as holding externally mounted volumes from native host or other containers
USER β Sets the username or UID to use when running the image
WORKDIR β Sets the working directory for any RUN, CMD, ENTRYPOINT, COPY, and ADD commands
ARG β Defines a variable that users can pass at build-time to the builder using βbuild-arg