Difference between Dockerfile and docker-compose
A Dockerfile is a text document that contains all the commands/Instruction a user could call on the command line to assemble an image.
For example:
FROM centos:latest
LABEL maintainer="collabnix"
RUN yum update -y && \
yum install -y httpd net-to...
ravenbytes.hashnode.dev1 min read