docker inspect <container-id> # to see log path and log config

####
"LogPath": "/var/lib/docker/containers/02bfe901866bb3a4ff60e749c53cc166caafb0afeba11dafb266ef85f23652c6/02bfe901866bb3a4ff60e749c53cc166caafb0afeba11dafb266ef85f23652c6-json.log"

####
"LogConfig": {
                "Type": "json-file",
                "Config": {}
            },

Switch from the “json-file” logging driver to the “local” logging driver

Untitled

**https://docs.docker.com/config/containers/logging/configure/#configure-the-default-logging-driver**

https://docs.docker.com/config/containers/logging/local/

docker run \\
      **--log-driver local**

^ added this to our script run_docker.sh

post change should see this as log config

do docker inspect <container id>

"LogPath": "",

"LogConfig": {
                "Type": "local",
                "Config": {}
            },