my containers are killed on a new installation of Fedora 24 atomic:
#docker run -ti nginx /bin/bash
docker: Error response from daemon: Cannot start container f24104b29f7f1f1614024414e8346e1a98c722c027f4122e6c70f7ace0cc5353: [9] System error: exit status 1.
After some debugging session, I think the process gets killed right after trying to assign an address on network bridge (see docker daemon logs in the next links). But I have no idea why is that nor how to debug further.
Some additional info is reported here:
Any help would really be appreciated!
Best,
Mario
I've just found the problem: https://bugzilla.redhat.com/show_bug.cgi?id=1320601
Adding the systemd flag to the launch script of the daemon: --exec-opt native.cgroupdriver=systemd
solved the problem.
Thanks, Federkun, for help!
Best,
Mario