Files
data-collection-terminal/docker-compose.yml
2024-08-23 14:40:22 +08:00

25 lines
473 B
YAML

services:
etcd:
build: docker/etcd
ports:
- 2379:2379
- 2380:2370
confd:
build: docker/confd
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:
- node-exporter
node-exporter:
build: docker/node_exporter