Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
b15c215b0b |
13
README.md
13
README.md
@ -6,9 +6,7 @@ Encrypt. While similar, the docker-compose files available here cater to
|
||||
different use cases for deploying Traefik.
|
||||
|
||||
## Add services to Traefik
|
||||
|
||||
1. Define the external traefik network on the top-level networks key
|
||||
|
||||
```
|
||||
networks:
|
||||
traefik:
|
||||
@ -16,14 +14,12 @@ networks:
|
||||
```
|
||||
|
||||
2. Attach your web container to Traefik's network via the service-level `networks` key
|
||||
|
||||
```
|
||||
networks:
|
||||
- traefik
|
||||
```
|
||||
|
||||
3. Define routing for Traefik in labels, replacing "examplerouter" with something unique
|
||||
|
||||
```
|
||||
labels:
|
||||
traefik.http.routers.examplerouter.rule: Host(`www.example.org`)
|
||||
@ -34,35 +30,30 @@ networks:
|
||||
```
|
||||
|
||||
## Variables
|
||||
|
||||
Here's a brief explanation of the variables used in the docker-compose files:
|
||||
|
||||
### Docker Settings
|
||||
|
||||
- `IMAGE`: The name of the Docker image (default: `traefik`).
|
||||
- `VERSION`: The tag of the Docker image (required, no default).
|
||||
- `VERSION`: The tag of the Docker image (default: `latest`).
|
||||
- `NAME`: The name assigned to the created container (default: `traefik`).
|
||||
|
||||
### Traefik Settings
|
||||
|
||||
- `DASHBOARD`: Enable(=true) or disable(=false) the Traefik API dashboard (default: `false`).
|
||||
- `DOMAIN`: The domain name where Traefik's dashboard is accessible (default: `traefik.local.krislamo.org`).
|
||||
- `ENTRYPOINT`: The entry point for the dashboard (default: `local`).
|
||||
- `EXPOSED_BY_DEFAULT`: Expose Docker containers by default without needing specific labels (default: `false`).
|
||||
|
||||
### Network Settings
|
||||
|
||||
- `NETWORK`: The Docker network to be used (default: `traefik`).
|
||||
- `WEB_PORT`: Binding for the regular HTTP traffic (defaults vary).
|
||||
- `WEBSECURE_PORT`: Binding for HTTPS traffic (default: `0.0.0.0:443:443`, only on HTTPS version).
|
||||
- `LOCAL_PORT`: Binding for local HTTPS traffic (default: `127.0.0.1:8443:8443`).
|
||||
|
||||
### Other Settings
|
||||
|
||||
- `LOG_LEVEL`: Logging level (default: `ERROR`).
|
||||
- `DEBUG`: Enable(=true) or turn off(=false) API debugging (default: `false`).
|
||||
|
||||
## License
|
||||
|
||||
## License
|
||||
This project is released under the 0BSD license, which allows for unrestricted
|
||||
use, modification, and distribution.
|
||||
|
@ -7,7 +7,7 @@ networks:
|
||||
|
||||
services:
|
||||
traefik:
|
||||
image: "${IMAGE:-traefik}:${VERSION:?}"
|
||||
image: "${IMAGE:-traefik}:${VERSION:-latest}"
|
||||
container_name: "${NAME:-traefik}"
|
||||
command:
|
||||
- --providers.docker=true
|
||||
|
47
docker-compose.swarm.yml
Normal file
47
docker-compose.swarm.yml
Normal file
@ -0,0 +1,47 @@
|
||||
version: '3.8'
|
||||
|
||||
volumes:
|
||||
traefik:
|
||||
|
||||
networks:
|
||||
traefik:
|
||||
name: traefik
|
||||
|
||||
services:
|
||||
traefik:
|
||||
image: "${IMAGE:-traefik}:${VERSION:-latest}"
|
||||
command:
|
||||
- --providers.docker=true
|
||||
- --providers.docker.swarmMode=true
|
||||
- --providers.docker.exposedbydefault=${EXPOSED_BY_DEFAULT:-false}
|
||||
- --api.dashboard=${DASHBOARD:-true}
|
||||
- --api.debug=${DEBUG:-false}
|
||||
- --log.level=${LOG_LEVEL:-ERROR}
|
||||
- --entrypoints.web.address=:80
|
||||
- --entrypoints.websecure.address=:443
|
||||
- --entrypoints.web.http.redirections.entrypoint.to=websecure
|
||||
- --entrypoints.web.http.redirections.entrypoint.scheme=https
|
||||
- --entrypoints.web.http.redirections.entrypoint.permanent=true
|
||||
ports:
|
||||
- "${WEB_PORT:-0.0.0.0:80:80}"
|
||||
- "${WEBSECURE_PORT:-0.0.0.0:443:443}"
|
||||
networks:
|
||||
- traefik
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
- "traefik:/etc/traefik"
|
||||
deploy:
|
||||
mode: global
|
||||
placement:
|
||||
constraints:
|
||||
- node.role == manager
|
||||
labels:
|
||||
- "traefik.http.routers.${ROUTER:-traefik}.rule=Host(`${DOMAIN:-traefik.local.krislamo.org}`)"
|
||||
- "traefik.http.routers.${ROUTER:-traefik}.service=api@internal"
|
||||
- "traefik.http.routers.${ROUTER:-traefik}.entrypoints=${ENTRYPOINT:-websecure}"
|
||||
- "traefik.http.routers.${ROUTER:-traefik}.tls=${ENABLE_TLS:-true}"
|
||||
- "traefik.http.services.${SERVICE:-traefik}.loadbalancer.server.port=80"
|
||||
- "traefik.http.middlewares.internalonly.ipwhitelist.sourcerange=127.0.0.1/32"
|
||||
- "traefik.http.routers.${ROUTER:-traefik}.middlewares=internalonly"
|
||||
- "traefik.docker.network=${NETWORK:-traefik}"
|
||||
- "traefik.enable=${ENABLE:-true}"
|
@ -7,7 +7,7 @@ networks:
|
||||
|
||||
services:
|
||||
traefik:
|
||||
image: "${IMAGE:-traefik}:${VERSION:?}"
|
||||
image: "${IMAGE:-traefik}:${VERSION:-latest}"
|
||||
container_name: "${NAME:-traefik}"
|
||||
command:
|
||||
- --providers.docker=true
|
||||
|
Loading…
Reference in New Issue
Block a user