mirror of
https://github.com/eko/pihole-exporter.git
synced 2024-11-05 08:50:33 +01:00
af7761653d
Why do we need this change? ---- Give a practical docker-compose.yml example to make it easier for people to build and or run within their own compose setups What effects does this change have? ----
20 lines
408 B
YAML
20 lines
408 B
YAML
version: "3.6"
|
|
services:
|
|
pihole_exporter:
|
|
build:
|
|
context: ./
|
|
args:
|
|
ARCH: CHANGE_ME
|
|
dockerfile: Dockerfile
|
|
image: ekofr/pihole-exporter:arm64
|
|
container_name: pihole_exporter
|
|
expose:
|
|
- 9617
|
|
environment:
|
|
PIHOLE_HOSTNAME: CHANG_EME
|
|
PIHOLE_PORT: CHANGE_ME
|
|
PIHOLE_PASSWORD: CHANGE_ME
|
|
INTERVAL: 30s
|
|
PORT: 9617
|
|
restart: always
|