mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
262a48f8eb
A new datastore interface is needed for buffering incoming distributed query results to be sent to the client. This PR attempts to define and implement that interface. It is intended that the ReadChannel() method be used by the goroutine that will push query results down a websocket to the client. Passing the results through this channel will allow that goroutine to perform a select on both the channel and the websocket, in order to properly handle IO.
20 lines
320 B
YAML
20 lines
320 B
YAML
mysql:
|
|
image: mysql:5.7.13
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: toor
|
|
MYSQL_DATABASE: kolide
|
|
MYSQL_USER: kolide
|
|
MYSQL_PASSWORD: kolide
|
|
ports:
|
|
- "3306:3306"
|
|
|
|
mailhog:
|
|
image: mailhog/mailhog:latest
|
|
ports:
|
|
- "8025:8025"
|
|
- "1025:1025"
|
|
|
|
redis:
|
|
image: redis:3.2.4
|
|
ports:
|
|
- "6379:6379" |