How to access logs logged in journald using fluent-bit that's inside a docker container
问题 I'm using docker-compose.yml that launches my services. All services look something like this: A-service: image: A-service restart: always network_mode: host logging: driver: journald options: tag: "{{.ImageName}}/{{.Name}}/{{.ID}}" fluent-bit: image: 'bitnami/fluent-bit:latest' restart: always network_mode: host command: /fluent-bit/bin/fluent-bit -c /fluent-bit/etc/fluent-bit.conf volumes: - ./service/config/fluent-bit.conf:/fluent-bit/etc/fluent-bit.conf - type: bind source: /run/log