24 lines
501 B
YAML
24 lines
501 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
logstash:
|
|
image: harbor.colben.cn/general/logstash:6
|
|
container_name: logstash
|
|
restart: "on-failure"
|
|
stop_grace_period: 2m
|
|
network_mode: host
|
|
volumes:
|
|
- type: bind
|
|
source: ./es/config
|
|
target: /opt/es/config
|
|
- type: bind
|
|
source: ./es/data
|
|
target: /opt/es/data
|
|
- type: bind
|
|
source: ./es/logs
|
|
target: /opt/es/logs
|
|
- type: bind
|
|
source: ./es/offline-plugins
|
|
target: /opt/es/offline-plugins
|
|
|