Merge pull request #170 from onovy/readme-fix

Fix quotes in README.md
This commit is contained in:
Vincent Composieux 2023-03-01 22:41:39 +01:00 committed by GitHub
commit ffad980ef9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -82,10 +82,10 @@ To do so, you can specify a list of hostnames, protocols, passwords/API tokens a
``` ```
$ docker run \ $ docker run \
-e 'PIHOLE_PROTOCOL="http,http,http" \ -e 'PIHOLE_PROTOCOL=http,http,http" \
-e 'PIHOLE_HOSTNAME="192.168.1.2,192.168.1.3,192.168.1.4"' \ -e 'PIHOLE_HOSTNAME=192.168.1.2,192.168.1.3,192.168.1.4"' \
-e "PIHOLE_API_TOKEN="$API_TOKEN1,$API_TOKEN2,$API_TOKEN3" \ -e "PIHOLE_API_TOKEN=$API_TOKEN1,$API_TOKEN2,$API_TOKEN3" \
-e "PIHOLE_PORT="8080,8081,8080" \ -e "PIHOLE_PORT=8080,8081,8080" \
-e 'PORT=9617' \ -e 'PORT=9617' \
-p 9617:9617 \ -p 9617:9617 \
ekofr/pihole-exporter:latest ekofr/pihole-exporter:latest
@ -95,10 +95,10 @@ If port, protocol and API token/password is the same for all instances, you can
``` ```
$ docker run \ $ docker run \
-e 'PIHOLE_PROTOCOL=",http" \ -e 'PIHOLE_PROTOCOL=,http" \
-e 'PIHOLE_HOSTNAME="192.168.1.2,192.168.1.3,192.168.1.4"' \ -e 'PIHOLE_HOSTNAME=192.168.1.2,192.168.1.3,192.168.1.4"' \
-e "PIHOLE_API_TOKEN="$API_TOKEN" \ -e "PIHOLE_API_TOKEN=$API_TOKEN" \
-e "PIHOLE_PORT="8080" \ -e "PIHOLE_PORT=8080" \
-e 'PORT=9617' \ -e 'PORT=9617' \
-p 9617:9617 \ -p 9617:9617 \
ekofr/pihole-exporter:latest ekofr/pihole-exporter:latest