how to create a docker container code example
Example 1: docker start container
$ docker start my_container
Example 2: how to build docker image
docker build <Dockerfile path> -t image-name
Example 3: docker create
docker create [options] IMAGE
-a, --attach
-i, --interactive
-t, --tty
--name NAME
-p, --publish 5000:5000
--expose 5432
-P, --publish-all
--link container:alias
-v, --volume `pwd`:/app
-e, --env NAME=hello
Example 4: create dockerfile
FROM ubuntu:18.04
COPY . /app
RUN make /app
CMD python /app/app.py