1

我正在尝试使用 ssl 在自签名证书上运行 traefik。这是我的 docker-compose.yml 文件

traefik:
image: traefik
restart: unless-stopped
command: -c /dev/null --web --docker --logLevel=INFO --defaultEntryPoints='https' --entryPoints="Name:https Address::443 TLS:/certs/cert.pem,/certs/key.pem" --entryPoints="Name:http Address::80 Redirect.EntryPoint:https"
ports:
  - '80:80'
  - '443:443'
  - '8080:8080'
volumes:
  - /var/run/docker.sock:/var/run/docker.sock
  - ./certs:/certs/

运行时docker-compose up- 我在日志中收到此错误:

level=error msg="Error creating TLS config: bad TLS Certificate KeyFile format, expected a path"

在那之后:

level=fatal msg="Error preparing server: bad TLS Certificate KeyFile format, expected a path

接着:

traefik exited with code 1

我在 Mac 上运行 Docker 版本 17.06.0

关于这里可能是什么问题的任何线索?

4

0 回答 0