mirror of
https://github.com/fleetdm/fleet
synced 2026-05-17 14:08:25 +00:00
Newer versions of Docker support this hostname, which allows test osquery instances to be started with less configuration.
55 lines
1.6 KiB
YAML
55 lines
1.6 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
|
|
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
|
|
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
|
|
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
|
|
environment:
|
|
ENROLL_SECRET: "${ENROLL_SECRET}"
|
|
command: osqueryd --flagfile=/etc/osquery/osquery.flags
|
|
ulimits:
|
|
core:
|
|
hard: 1000000000
|
|
soft: 1000000000
|