mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
fix: add missing variables (#19450)
No ticket, but was a bug found while testing the new certs feature. # Checklist for submitter If some of the following don't apply, delete the relevant line. <!-- Note that API documentation changes are now addressed by the product design team. --> - [x] Manual QA for all new/changed functionality
This commit is contained in:
commit
a477e57267
1 changed files with 7 additions and 2 deletions
|
|
@ -55,6 +55,7 @@ services:
|
|||
FLEET_VULNERABILITIES_DATABASES_PATH: /vulndb
|
||||
FLEET_VULNERABILITIES_PERIODICITY: 5m
|
||||
FLEET_LOGGING_DEBUG: 'true'
|
||||
FLEET_SERVER_PRIVATE_KEY: ${FLEET_SERVER_PRIVATE_KEY}
|
||||
# This can be configured for testing purposes but otherwise uses the
|
||||
# typical default of provided.
|
||||
FLEET_OSQUERY_HOST_IDENTIFIER: ${FLEET_OSQUERY_HOST_IDENTIFIER:-provided}
|
||||
|
|
@ -65,6 +66,7 @@ services:
|
|||
- .:/fleet/
|
||||
- ./logs:/logs
|
||||
- ./vulndb:/vulndb
|
||||
- ./config:/config
|
||||
ports:
|
||||
- "8412:8412"
|
||||
networks:
|
||||
|
|
@ -93,8 +95,8 @@ services:
|
|||
FLEET_MYSQL_PASSWORD: fleet
|
||||
FLEET_REDIS_ADDRESS: redis01:6379
|
||||
FLEET_SERVER_ADDRESS: 0.0.0.0:1337
|
||||
FLEET_SERVER_TLS: 'false'
|
||||
FLEET_LOGGING_JSON: 'true'
|
||||
FLEET_SERVER_TLS: "false"
|
||||
FLEET_LOGGING_JSON: "true"
|
||||
FLEET_SESSION_DURATION: 720h
|
||||
FLEET_OSQUERY_STATUS_LOG_PLUGIN: stdout
|
||||
FLEET_OSQUERY_RESULT_LOG_PLUGIN: stdout
|
||||
|
|
@ -102,12 +104,15 @@ services:
|
|||
FLEET_LICENSE_KEY: ${FLEET_LICENSE_KEY}
|
||||
FLEET_OSQUERY_LABEL_UPDATE_INTERVAL: 1m
|
||||
FLEET_VULNERABILITIES_CURRENT_INSTANCE_CHECKS: "no"
|
||||
FLEET_SERVER_PRIVATE_KEY: ${FLEET_SERVER_PRIVATE_KEY}
|
||||
# This can be configured for testing purposes but otherwise uses the
|
||||
# typical default of provided.
|
||||
FLEET_OSQUERY_HOST_IDENTIFIER: ${FLEET_OSQUERY_HOST_IDENTIFIER:-provided}
|
||||
depends_on:
|
||||
- mysql01
|
||||
- redis01
|
||||
volumes:
|
||||
- ./config:/config
|
||||
ports:
|
||||
- "1337:1337"
|
||||
networks:
|
||||
|
|
|
|||
Loading…
Reference in a new issue