I have following question:
How to run docker with experimental features on (like image squashing docker build --squash=true...
for reduce it size) on ubuntu 16.04 ?
I have following question:
How to run docker with experimental features on (like image squashing docker build --squash=true...
for reduce it size) on ubuntu 16.04 ?
I tried everything here on a Ubuntu 18.04 VM on my mac--nothing worked. All over the interwebs said the same thing, but the one thing that finally got experimental turned on was @Michael Haren's tiny answer:
which meant something like this for me:
This should be a top-level answer. So, credit to them (except sweet internet karma points for me...).
To turn on experimental docker functions create following file by:
sudo nano /etc/docker/daemon.json
and add below content to it
and save file (by CTRL+X and Enter ) and exit. In terminal type:
sudo service docker restart
To check that experimental funcions are ON, type in terminal:
docker version
And you should see
Experimental: true
UPDATE
Instead of nano you can use this one-liner:
If you only want to run it temporarily / without modifying files, you can
export DOCKER_CLI_EXPERIMENTAL=enabled
. The below turns on experimental mode for your client.