Docker container logs taking all my disk space

前端 未结 6 2236
隐瞒了意图╮
隐瞒了意图╮ 2021-01-30 07:53

I am running a container on a VM. My container is writing logs by default to /var/lib/docker/containers/CONTAINER_ID/CONTAINER_ID-json.log file until the disk is full.

6条回答
  •  感动是毒
    2021-01-30 08:41

    Example for docker-compose version 1:

    mongo:
      image: mongo:3.6.16
      restart: unless-stopped
      log_opt:
        max-size: 1m
        max-file: "10"
    

提交回复
热议问题