mirror of
https://github.com/fleetdm/fleet
synced 2026-05-06 06:48:54 +00:00
Changes: - Updated the MSP dashboard's readme to include a section about required config values for software features. - Added config values required for software features to the MSP dashboard's docker-compose file. - Added an uploads configuration file that lists the configuration values required for software features.
33 lines
1.9 KiB
YAML
33 lines
1.9 KiB
YAML
version: '3'
|
|
services:
|
|
bulk-operations-dashboard:
|
|
build: .
|
|
ports:
|
|
- "1337:1337"
|
|
depends_on:
|
|
- postgres
|
|
environment:
|
|
sails_datastores__default__url: postgres://user:password@postgres:5432/dbname
|
|
sails_datastores__default__adapter: sails-postgresql
|
|
sails_sockets__url: redis://redis:6379
|
|
sails_session__url: redis://redis:6379
|
|
sails_models__migrate: safe
|
|
sails_custom__fleetBaseUrl: '' #Add the base url of your Fleet instance: ex: https://fleet.example.com
|
|
sails_custom__fleetApiToken: '' # Add the API token of an API-only user [?] Here's how you get one: https://fleetdm.com/docs/using-fleet/fleetctl-cli#get-the-api-token-of-an-api-only-user
|
|
sails_uploads__secret: '' # (Required to enable software features) The secret for the S3 bucket where unassigned software installers will be stored.
|
|
sails_uploads__bucket: '' # (Required to enable software features) The name of the S3 bucket where software installers will be stored.
|
|
sails_uploads__region: '' # (Required to enable software features) The region where the S3 bucket is located.
|
|
sails_uploads__bucketWithPostfix: '' # (Required to enable software features) This value should be set to the same value as the bucket unless the files are stored in a folder in the S3 bucket. In that case, this value needs to be set to `{bucket name}{folder name}` e.g., unassigned-software-installers/staging
|
|
sails_uploads__prefixForFileDeletion: '' # (Required to enable software features) Only required if the software installers are stored in a folder in the S3 bucket. The name of the folder where the software installers are stored in the S3 bucket with a trailing slash. e.g., staging/
|
|
|
|
postgres:
|
|
image: "postgres:alpine"
|
|
environment:
|
|
POSTGRES_USER: user
|
|
POSTGRES_PASSWORD: password
|
|
POSTGRES_DB: dbname
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
pgdata:
|