docker optin code example
Example 1: docker run all port mapping
docker run --network host
When running using --network host there is no need to map the ports.
All the docker container ports will be available since the network host mode
makes the container use the host's network stack.
Example 2: docker create volume
$ docker volume create hello
hello
$ docker run -d -v hello:/world busybox ls /world