Files
data-collection-terminal/docker-compose.yml

31 lines
573 B
YAML

services:
etcd:
build: docker/etcd
ports:
- 2379:2379
- 2380:2370
confd:
build: docker/confd
depends_on:
- etcd
volumes:
- ./confd:/etc/confd
- ./data:/data
prometheus:
build: docker/prometheus
ports:
- 9090:9090
depends_on:
- node-exporter
panel:
build: docker/panel
volumes:
- ./management-panel:/app
entrypoint: php artisan serve --host=0.0.0.0
ports:
- 8000:8000
depends_on:
- etcd
- prometheus
node-exporter:
build: docker/node_exporter