mirror of
https://github.com/docker/compose.git
synced 2025-07-08 14:24:26 +02:00
15 lines
244 B
YAML
15 lines
244 B
YAML
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"
|