Tools, FAQ, Tutorials:
Verify Docker Installation on Ubuntu
How to Verify Docker Installation on Ubuntu?
✍: FYIcenter.com
You can follow this tutorial to verify Docker Installation on Ubuntu.
1. Make sure the Docker Engine is running
fyicenter$ ps -ef | grep docker root 1707 1 0 00:00:17 /usr/bin/dockerd -H fd:// root 20591 1563 0 00:00:00 containerd-shim -namespace moby \ -workdir /var/lib/containerd/io.containerd.runtime.v1.linux/moby\ /e744e7509b1301b967c04d42dd57a9e69a540e48dab83d893971f2554c624191 \ -address /run/containerd/containerd.sock -containerd-binary \ /usr/bin/containerd -runtime-root /var/run/docker/runtime-runc
2. Check Docker CLI version:
fyicenter$ docker --version Docker version 18.09.2, build 6247962
3. Check Docker Engine status with Docker CLI:
fyicenter$ docker info Containers: 0 Images: 5 Server Version: 18.09.2 Storage Driver: overlay2 Backing Filesystem: extfs Supports d_type: true Native Overlay Diff: false Logging Driver: json-file Cgroup Driver: cgroupfs Plugins: Volume: local Network: bridge host macvlan null overlay Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog Swarm: inactive Runtimes: runc Default Runtime: runc Init Binary: docker-init Operating System: Ubuntu 18.04.2 LTS ... Docker Root Dir: /var/lib/docker Registry: https://index.docker.io/v1/ Product License: Community Engine
Everything looks good.
⇒ "docker run hello-world" Test on Ubuntu
2019-05-20, 1164🔥, 0💬
Popular Posts:
What is EPUB 2.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 2.0 Metadata "dc:publisher" ...
How to send an FTP request with the urllib.request.urlopen() function? If an FTP server supports ano...
How to detect errors occurred in the json_decode() call? You can use the following two functions to ...
How To Get the Minimum or Maximum Value of an Array in PHP? If you want to get the minimum or maximu...
Can Two Forms Be Nested? Can two forms be nested? The answer is no and yes: No. You can not nest two...