You are not logged in.
I want to use docker manifest and thus need to turn on the experimental mode. I tried both suggestions from https://stackoverflow.com/questions/465 … 8#54334998
however It doesn't work. Instead I see:
[malte@mtop audiostation]$ sudo systemctl status docker.service
● docker.service - Docker Application Container Engine
Loaded: loaded (/etc/systemd/system/docker.service; disabled; vendor preset: disabled)
Active: active (running) since Wed 2019-01-23 21:12:33 CET; 10min ago
Docs: https://docs.docker.com
Main PID: 2762 (dockerd)
Tasks: 50 (limit: 4915)
Memory: 223.5M
CGroup: /system.slice/docker.service
├─2762 /usr/bin/dockerd -H fd:// --experimental=true
└─2773 containerd --config /var/run/docker/containerd/containerd.toml --log-level info
Jan 23 21:12:31 mtop dockerd[2762]: time="2019-01-23T21:12:31.590759828+01:00" level=info msg="Graph migration to content-addressability took 0.00 seconds"
Jan 23 21:12:31 mtop dockerd[2762]: time="2019-01-23T21:12:31.591544217+01:00" level=warning msg="Your kernel does not support cgroup rt period"
Jan 23 21:12:31 mtop dockerd[2762]: time="2019-01-23T21:12:31.591598505+01:00" level=warning msg="Your kernel does not support cgroup rt runtime"
Jan 23 21:12:31 mtop dockerd[2762]: time="2019-01-23T21:12:31.592786538+01:00" level=info msg="Loading containers: start."
Jan 23 21:12:33 mtop dockerd[2762]: time="2019-01-23T21:12:33.231495790+01:00" level=info msg="Default bridge (docker0) is assigned with an IP address 172.17.0.0/16. Daemon option --bip can>
Jan 23 21:12:33 mtop dockerd[2762]: time="2019-01-23T21:12:33.795226208+01:00" level=info msg="Loading containers: done."
Jan 23 21:12:33 mtop dockerd[2762]: time="2019-01-23T21:12:33.851264374+01:00" level=info msg="Docker daemon" commit=4c52b901c6 graphdriver(s)=btrfs version=18.09.1-ce
Jan 23 21:12:33 mtop dockerd[2762]: time="2019-01-23T21:12:33.851593662+01:00" level=info msg="Daemon has completed initialization"
Jan 23 21:12:33 mtop dockerd[2762]: time="2019-01-23T21:12:33.886171938+01:00" level=info msg="API listen on /var/run/docker.sock"
Jan 23 21:12:33 mtop systemd[1]: Started Docker Application Container Engine.
[malte@mtop audiostation]$ sudo docker manifest
docker manifest is only supported on a Docker cli with experimental cli features enabled
Last edited by deisi (2019-02-12 07:31:23)
Offline
Okay, I found the solution. Dockers documentation is somewhat wrong here. See https://github.com/docker/cli/issues/947 for what is going on.
Offline