mirror of
https://github.com/fleetdm/fleet
synced 2026-05-21 07:58:31 +00:00
15 lines
398 B
YAML
15 lines
398 B
YAML
|
|
---
|
||
|
|
version: "2"
|
||
|
|
services:
|
||
|
|
nginx:
|
||
|
|
image: nginx
|
||
|
|
volumes:
|
||
|
|
- ../osquery/fleet.crt:/etc/nginx/certificates/fleet.crt
|
||
|
|
- ../osquery/fleet.key:/etc/nginx/certificates/fleet.key
|
||
|
|
- ./client-ca.crt:/etc/nginx/certificates/client-ca.crt
|
||
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf
|
||
|
|
ports:
|
||
|
|
- "8888:8888"
|
||
|
|
extra_hosts:
|
||
|
|
- "host.docker.internal:host-gateway"
|