20 lines
380 B
YAML
20 lines
380 B
YAML
version: '3'
|
|
|
|
services:
|
|
prometheus:
|
|
build:
|
|
context: ./
|
|
container_name: prometheus
|
|
image: prometheus:local
|
|
logging:
|
|
driver: journald
|
|
options:
|
|
tag: prometheus
|
|
restart: unless-stopped
|
|
ports:
|
|
- 9090:9090
|
|
volumes:
|
|
- ${PROMETHEUS_CONFIG_FILE_PATH}:/config/prometheus.yaml:ro
|
|
- ${PROMETHEUS_DATA_PATH}:/data:rw
|
|
|