9
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

dockerのログをローテートする

Last updated at Posted at 2016-07-19

docker-composeでログローテとする方法

version: "3"
services:
  app:
    image: your-app-image
    logging:
      options:
        max-size: "10k"
        max-file: "5"
root@dinghy:~# ls -l /var/lib/docker/containers/1fe87eeef61e63244269bfd089501208f2772a615baefd0828e8fbe8cc6c964e/
total 84
-r--------    1 root     root        6.5K Jul 19 14:38 1fe87eeef61e63244269bfd089501208f2772a615baefd0828e8fbe8cc6c964e-json.log
-r--------    1 root     root        9.8K Jul 19 14:38 1fe87eeef61e63244269bfd089501208f2772a615baefd0828e8fbe8cc6c964e-json.log.1
-r--------    1 root     root        9.9K Jul 19 14:38 1fe87eeef61e63244269bfd089501208f2772a615baefd0828e8fbe8cc6c964e-json.log.2
-r--------    1 root     root        9.8K Jul 19 14:38 1fe87eeef61e63244269bfd089501208f2772a615baefd0828e8fbe8cc6c964e-json.log.3
-r--------    1 root     root        9.8K Jul 19 14:38 1fe87eeef61e63244269bfd089501208f2772a615baefd0828e8fbe8cc6c964e-json.log.4
9
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?