forked from ory/hydra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quickstart-prometheus.yml
26 lines (24 loc) · 1.12 KB
/
quickstart-prometheus.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
###########################################################################
####### FOR DEMONSTRATION PURPOSES ONLY #######
###########################################################################
# #
# If you have not yet read the tutorial, do so now: #
# https://www.ory.sh/docs/hydra/5min-tutorial #
# #
# This set up is only for demonstration purposes. The login #
# endpoint can only be used if you follow the steps in the tutorial. #
# #
###########################################################################
version: "3.7"
services:
prometheus:
image: prom/prometheus:v2.12.0
ports:
- "9090:9090"
depends_on:
- hydra
command: --config.file=/etc/prometheus/prometheus.yml
volumes:
- ./quickstart-prometheus-config.yml:/etc/prometheus/prometheus.yml
networks:
- intranet