Update README.md

Fixed docker image name
This commit is contained in:
Eldwan Brianne 2021-02-19 13:41:52 +01:00 committed by GitHub
parent 7ec92c2036
commit a906d993e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -75,14 +75,14 @@ docker run \
-e 'log_limit=10000' \ -e 'log_limit=10000' \
-e 'server_port=9617' \ -e 'server_port=9617' \
-p 9617:9617 \ -p 9617:9617 \
ebrianne/adguard_exporter:latest ebrianne/adguard-exporter:latest
``` ```
If you prefer you can use an .env file where the environment variables are defined and using the command: If you prefer you can use an .env file where the environment variables are defined and using the command:
```bash ```bash
docker run --env-file=.env -p 9617:9617 \ docker run --env-file=.env -p 9617:9617 \
ebrianne/adguard_exporter:latest ebrianne/adguard-exporter:latest
``` ```
You can also use docker-compose passing the environment file or using secrets locally You can also use docker-compose passing the environment file or using secrets locally
@ -93,7 +93,7 @@ version: "3.7"
services: services:
adguard_exporter: adguard_exporter:
image: ebrianne/adguard_exporter:latest image: ebrianne/adguard-exporter:latest
restart: always restart: always
ports: ports:
- "9617:9617" - "9617:9617"
@ -111,7 +111,7 @@ secrets:
services: services:
adguard_exporter: adguard_exporter:
image: ebrianne/adguard_exporter:latest image: ebrianne/adguard-exporter:latest
restart: always restart: always
secrets: secrets:
- my-adguard-pass - my-adguard-pass
@ -142,7 +142,7 @@ secrets:
services: services:
adguard_exporter: adguard_exporter:
image: ebrianne/adguard_exporter:latest image: ebrianne/adguard-exporter:latest
restart: always restart: always
secrets: secrets:
- my-adguard-pass - my-adguard-pass