Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions se_bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,20 @@ volumes:
shared:

services:
node-exporter:
image: prom/node-exporter:latest
network_mode: host
restart: unless-stopped
volumes:
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /:/rootfs:ro
command:
- '--path.procfs=/host/proc'
- '--path.rootfs=/rootfs'
- '--path.sysfs=/host/sys'
- '--collector.filesystem.mount-points-exclude=^/(sys|proc|dev|host|etc)($$|/)'
- '--no-collector.arp'
se2:
image: mammothcyber/se:latest
network_mode: host
Expand All @@ -90,6 +104,9 @@ services:
- network_type="$network_type"
- network_name="$network_name"
- service_edge_number="$service_edge_number"
- metrics_server="http://127.0.0.1:9100/metrics"
- streaming_server_metrics_port="9101"
- streaming_server_updater_port="7402"
- HTTP_PROXY=$proxyUrl
volumes:
- ./:/home/se/conf/
Expand Down