Explictily disable log compression

Log compression is only relevant when `max-file` is 2 or higher.

Older versions of docker (Docker version 19.03.14, build 5eb3275d40 for example (currently the latest version on Debian 9)) error out when compression is enabled in the ``/etc/docker/daemon.json`` file:

```
Error response from daemon: failed to initialize logging driver: compress cannot be true when max-file is less than 2 or max-size is not set
```

While newer docker versions just don't care setting this explicitly to false like in ``intsall.go``, it doesn't hurt being explicit here:

de51fd1c51/server/install.go (L481-L485)
This commit is contained in:
Yannick Schinko 2020-12-12 00:51:11 +01:00 committed by GitHub
parent ecb15a224a
commit c253a4bac0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -212,6 +212,7 @@ func (e *Environment) Create() error {
Config: map[string]string{
"max-size": "5m",
"max-file": "1",
"compress": "false",
},
},