mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
This commit adds both a Dockerfile and updates the docker-compose.yml with local mounting so that you can standup a consistent dev environment. Please view the project README for more information.
21 lines
383 B
JSON
21 lines
383 B
JSON
{
|
|
"mysql": {
|
|
"address": "mysql:3306",
|
|
"username": "kolide",
|
|
"password": "kolide",
|
|
"database": "kolide"
|
|
},
|
|
"server": {
|
|
"address": ":8080",
|
|
"cert": "./tools/kolide.crt",
|
|
"key": "./tools/kolide.key"
|
|
},
|
|
"app": {
|
|
"bcrypt_cost": 12,
|
|
"salt_length": 32,
|
|
"jwt_key": "very secure"
|
|
},
|
|
"osquery": {
|
|
"enroll_secret": "super secure"
|
|
}
|
|
}
|