Update the Syslog config of Docker for X
10K+
Deploy to each node via:
$ docker container run --rm -v /etc:/etc -v /var/run/docker.sock:/var/run/docker.sock docker4x/silence-syslog:latest
Changes listed in https://github.com/docker/for-aws/issues/111
To deploy it to all nodes, run it using swarm-exec:
$ docker service create --name syslog-update --mode=global --restart-condition none --detach \
--mount type=bind,source=/var/run/docker.sock,target=/var/run/docker.sock \
--mount type=bind,source=/etc,target=/etc docker4x/silence-syslog:latest
# remove the service
$ docker service rm syslog-update
Content type
Image
Digest
Size
42.8 MB
Last updated
over 8 years ago
docker pull docker4x/silence-syslog