docker-compose.yml 258 B

1234567891011121314
  1. version: "2"
  2. services:
  3. simple:
  4. image: busybox:1.31.0-uclibc
  5. command: top
  6. logging:
  7. driver: "none"
  8. another:
  9. image: busybox:1.31.0-uclibc
  10. command: top
  11. logging:
  12. driver: "json-file"
  13. options:
  14. max-size: "10m"