2022-10-09 16:59:31 +00:00
|
|
|
version: "3.8"
|
|
|
|
|
|
|
|
networks:
|
|
|
|
host-network:
|
|
|
|
name: host
|
|
|
|
external: true
|
|
|
|
traefik-network:
|
|
|
|
external: true
|
|
|
|
|
|
|
|
services:
|
|
|
|
traefik-service:
|
2023-10-01 03:55:28 +00:00
|
|
|
image: docker.io/traefik:2.10.1
|
2022-10-09 16:59:31 +00:00
|
|
|
hostname: traefik-service-host
|
|
|
|
tty: true
|
|
|
|
environment:
|
2022-10-30 15:40:09 +00:00
|
|
|
- DS_NODE_NAME={{.Node.Hostname}}
|
|
|
|
- DS_SERVICE_NAME={{.Service.Name}}
|
|
|
|
- DS_TASK_NAME={{.Task.Name}}
|
2022-10-09 16:59:31 +00:00
|
|
|
volumes:
|
2022-10-31 05:41:19 +00:00
|
|
|
# direct binding is ok for the constraints 'node.role == manager' below
|
2022-10-09 16:59:31 +00:00
|
|
|
- type: bind
|
|
|
|
source: /var/run/docker.sock
|
|
|
|
target: /var/run/docker.sock
|
|
|
|
# if /etc/traefik direcotry exists, traefik looks for /etc/traefik/traefik.toml
|
|
|
|
# use a different directory(/config) to avoid problems for the lack of traefik.toml
|
|
|
|
- type: bind
|
|
|
|
source: /home/gfs-data/traefik
|
|
|
|
target: /config
|
|
|
|
ports:
|
|
|
|
- target: 80
|
|
|
|
published: 80
|
|
|
|
protocol: tcp
|
|
|
|
mode: host
|
|
|
|
- target: 443
|
|
|
|
published: 443
|
|
|
|
protocol: tcp
|
|
|
|
mode: host
|
2023-10-01 03:55:28 +00:00
|
|
|
- target: 3306
|
|
|
|
published: 3306
|
|
|
|
protocol: tcp
|
|
|
|
mode: host
|
2022-10-09 16:59:31 +00:00
|
|
|
- target: 4444
|
|
|
|
published: 4444
|
|
|
|
protocol: tcp
|
|
|
|
mode: host
|
|
|
|
networks:
|
|
|
|
- traefik-network
|
|
|
|
#- host-network
|
|
|
|
deploy:
|
|
|
|
mode: global
|
|
|
|
placement:
|
2022-10-31 05:41:19 +00:00
|
|
|
constraints:
|
|
|
|
- node.role == manager
|
2022-10-09 16:59:31 +00:00
|
|
|
command:
|
|
|
|
- --log.level=INFO
|
|
|
|
- --accessLog
|
|
|
|
- --api.dashboard=true
|
|
|
|
- --api.insecure=true
|
|
|
|
- --ping=true
|
|
|
|
- --entrypoints.traefik.address=:4444
|
|
|
|
- --entrypoints.web.address=:80
|
|
|
|
##- --entrypoints.web.http.redirections.entryPoint.to=websec
|
|
|
|
##- --entrypoints.web.http.redirections.entryPoint.scheme=https
|
|
|
|
- --entrypoints.websec.address=:443
|
2023-10-01 03:55:28 +00:00
|
|
|
- --entrypoints.mariadb.address=:3306
|
2022-10-09 16:59:31 +00:00
|
|
|
- --providers.docker.swarmmode=true
|
|
|
|
- --providers.docker.exposedbydefault=false
|
|
|
|
- --providers.docker.network=traefik-network
|
|
|
|
- --providers.docker.watch=true
|
|
|
|
- --providers.file.filename=/config/traefik-cert.yml
|
|
|
|
- --providers.file.watch=true
|
|
|
|
- --metrics.prometheus=true
|