Consistent entryPoints capitalization in CLI flag usage

This commit is contained in:
Jesper Noordsij 2024-04-22 17:24:04 +02:00 committed by GitHub
parent fe0af1ec4b
commit f84e00e481
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 83 additions and 83 deletions

View file

@ -10,7 +10,7 @@ services:
- "--api.insecure=true"
- "--providers.docker=true"
- "--providers.docker.exposedbydefault=false"
- "--entrypoints.web.address=:80"
- "--entryPoints.web.address=:80"
ports:
- "80:80"
- "8080:8080"

View file

@ -86,7 +86,7 @@ Second, you define an entry point, along with the exposure of the matching port
```yaml
command:
# Traefik will listen to incoming request on the port 80 (HTTP)
- "--entrypoints.web.address=:80"
- "--entryPoints.web.address=:80"
ports:
- "80:80"