VictoriaMetrics/deployment/docker/victorialogs/filebeat/compose-base.yml
Andrii Chubatiuk dfcab4a47f
deployment/victorialogs: rename not executable compose files (#7124)
### Describe Your Changes

Renamed base compose files to prevent envs to be created from them

### Checklist

The following checks are **mandatory**:

- [ ] My change adheres [VictoriaMetrics contributing
guidelines](https://docs.victoriametrics.com/contributing/).
2024-09-29 09:54:45 +02:00

18 lines
496 B
YAML

include:
- ../compose-base.yml
services:
filebeat:
image: docker.elastic.co/beats/filebeat:8.15.1
restart: on-failure
volumes:
- type: bind
source: /var/run/docker.sock
target: /var/run/docker.sock
- type: bind
source: /var/lib/docker/containers/
target: /var/lib/docker/containers/
- ${PWD}/filebeat.yml:/usr/share/filebeat/filebeat.yml:ro
user: root
command:
- "--strict.perms=false"
depends_on: [victorialogs]