docker run was a very vanilla:
docker run -d —restart=unless-stopped -p 80:80 -p 443:443 rancher/rancher:latest
For the Rancher server running in DigitalOcean - I included an --acme-domain - and the current docker run is using --volumes-from because of the 2.2.6 to 2.2.7 upgrade
docker info:
$ sudo docker info
Client:
Debug Mode: false
Server:
Containers: 5
Running: 1
Paused: 0
Stopped: 4
Images: 4
Server Version: 19.03.1
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host ipvlan 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
containerd version: 894b81a4b802e4eb2a91d1ce216b8817763c29fb
runc version: 425e105d5a03fabd737a126ad93d62a9eeede87f
init version: fec3683
Security Options:
apparmor
seccomp
Profile: default
Kernel Version: 4.15.0-55-generic
Operating System: Ubuntu 18.04.3 LTS
OSType: linux
Architecture: x86_64
CPUs: 1
Total Memory: 2.931GiB
Name: ballpark
ID: S77O:KS6U:JI24:6M4Q:CJFP:YBBY:IBQH:H7W6:CSOJ:JYNB:YIWY:4FIJ
Docker Root Dir: /var/lib/docker
Debug Mode: false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
WARNING: No swap limit support
Here’s the networking portion of docker inspect:
"NetworkSettings": {
"Bridge": "",
"SandboxID": "1a9658dfcd0066e4689223913620f2f9d15f27eb07ae41df279814609354e2a7",
"HairpinMode": false,
"LinkLocalIPv6Address": "",
"LinkLocalIPv6PrefixLen": 0,
"Ports": {
"443/tcp": [
{
"HostIp": "0.0.0.0",
"HostPort": "443"
}
],
"80/tcp": [
{
"HostIp": "0.0.0.0",
"HostPort": "80"
}
]
},
"SandboxKey": "/var/run/docker/netns/1a9658dfcd00",
"SecondaryIPAddresses": null,
"SecondaryIPv6Addresses": null,
"EndpointID": "526ac97e218c7d5fdf3a2c0f3b5e6af5e52283cff5d1d17d2d965ba17d0f6f2e",
"Gateway": "172.17.0.1",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAddress": "172.17.0.2",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"MacAddress": "02:42:ac:11:00:02",
"Networks": {
"bridge": {
"IPAMConfig": null,
"Links": null,
"Aliases": null,
"NetworkID": "5bcd5426e734fa06de2f4fb0b00a3c3e260414cfb6b6351203c2570aa728dfe1",
"EndpointID": "526ac97e218c7d5fdf3a2c0f3b5e6af5e52283cff5d1d17d2d965ba17d0f6f2e",
"Gateway": "172.17.0.1",
"IPAddress": "172.17.0.2",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"MacAddress": "02:42:ac:11:00:02",
"DriverOpts": null
}
}
}