Error response from daemon: --live-restore daemon configuration is incompatible with swarm mode

switching live-restore from true to false did the job for me:

# cat /etc/docker/daemon.json 
{
    "live-restore": false
}
# docker swarm init
Swarm initialized: current node (cdw7tv7omkja97mf1bql2mifp) is now a manager.

To add a worker to this swarm, run the following command:

    docker swarm join \
    --token SWMTKN-1-0pxn4kapleu0bufil1mttsz44r5f6nrtrbtaj3yjb8pp12ij3w-3x9g9439klahytgs17g6esx60 \
    10.52.17.101:2377

To add a manager to this swarm, run 'docker swarm join-token manager' and follow the instructions.

#