summaryrefslogtreecommitdiff
path: root/tests/fixtures/logging-composefile/docker-compose.yml
blob: 466d13e5b8fe3d4d9847496a5219e66dda5b8569 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
version: "2"
services:
  simple:
    image: busybox:latest
    command: top
    logging:
      driver: "none"
  another:
    image: busybox:latest
    command: top
    logging:
      driver: "json-file"
      options:
          max-size: "10m"