mirror of
https://github.com/docker/compose.git
synced 2025-08-15 22:58:12 +02:00
20 lines
373 B
YAML
20 lines
373 B
YAML
services:
|
|
fluentbit:
|
|
image: fluent/fluent-bit:3.1.7-debug
|
|
ports:
|
|
- "24224:24224"
|
|
- "24224:24224/udp"
|
|
environment:
|
|
FOO: ${BAR}
|
|
|
|
app:
|
|
image: nginx
|
|
depends_on:
|
|
fluentbit:
|
|
condition: service_started
|
|
restart: true
|
|
logging:
|
|
driver: fluentd
|
|
options:
|
|
fluentd-address: ${HOST:-127.0.0.1}:24224
|