mirror of
https://github.com/fleetdm/fleet
synced 2026-05-15 21:18:29 +00:00
On CentOS6 there is a bug in which osquery incorrectly reports an empty string for platform. This PR fixes our detection of centos in this case. Fixes #1339
63 lines
1.8 KiB
YAML
63 lines
1.8 KiB
YAML
|
|
version: '2'
|
|
|
|
services:
|
|
ubuntu14-osquery:
|
|
image: "kolide/osquery:${KOLIDE_OSQUERY_VERSION}"
|
|
volumes:
|
|
- ./kolide.crt:/etc/osquery/kolide.crt
|
|
- ./example_osquery.flags:/etc/osquery/osquery.flags
|
|
extra_hosts:
|
|
- "dockerhost:${LOCALHOST}"
|
|
environment:
|
|
ENROLL_SECRET: "${ENROLL_SECRET}"
|
|
command: osqueryd --flagfile=/etc/osquery/osquery.flags
|
|
ulimits:
|
|
core:
|
|
hard: 1000000000
|
|
soft: 1000000000
|
|
|
|
ubuntu16-osquery:
|
|
image: "kolide/ubuntu16-osquery:${KOLIDE_OSQUERY_VERSION}"
|
|
volumes:
|
|
- ./kolide.crt:/etc/osquery/kolide.crt
|
|
- ./example_osquery.flags:/etc/osquery/osquery.flags
|
|
extra_hosts:
|
|
- "dockerhost:${LOCALHOST}"
|
|
environment:
|
|
ENROLL_SECRET: "${ENROLL_SECRET}"
|
|
command: osqueryd --flagfile=/etc/osquery/osquery.flags
|
|
ulimits:
|
|
core:
|
|
hard: 1000000000
|
|
soft: 1000000000
|
|
|
|
centos7-osquery:
|
|
image: "kolide/centos7-osquery:${KOLIDE_OSQUERY_VERSION}"
|
|
volumes:
|
|
- ./kolide.crt:/etc/osquery/kolide.crt
|
|
- ./example_osquery.flags:/etc/osquery/osquery.flags
|
|
extra_hosts:
|
|
- "dockerhost:${LOCALHOST}"
|
|
environment:
|
|
ENROLL_SECRET: "${ENROLL_SECRET}"
|
|
command: osqueryd --flagfile=/etc/osquery/osquery.flags
|
|
ulimits:
|
|
core:
|
|
hard: 1000000000
|
|
soft: 1000000000
|
|
|
|
centos6-osquery:
|
|
image: "kolide/centos6-osquery:${KOLIDE_OSQUERY_VERSION}"
|
|
volumes:
|
|
- ./kolide.crt:/etc/osquery/kolide.crt
|
|
- ./example_osquery.flags:/etc/osquery/osquery.flags
|
|
extra_hosts:
|
|
- "dockerhost:${LOCALHOST}"
|
|
environment:
|
|
ENROLL_SECRET: "${ENROLL_SECRET}"
|
|
command: osqueryd --flagfile=/etc/osquery/osquery.flags
|
|
ulimits:
|
|
core:
|
|
hard: 1000000000
|
|
soft: 1000000000
|