mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Related to: #20296 Changes: - Added `ee/bulk-operations-dashboard`, a Sails.js app that lets users manage configuration profiles and scripts across multiple teams on a Fleet instance. - Added a Github workflow to deploy the app to Heroku - Added a Github workflow to test changes to the bulk operations dashboard.
28 lines
934 B
YAML
28 lines
934 B
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
|
|
|
|
postgres:
|
|
image: "postgres:alpine"
|
|
environment:
|
|
POSTGRES_USER: user
|
|
POSTGRES_PASSWORD: password
|
|
POSTGRES_DB: dbname
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
pgdata:
|