-
Notifications
You must be signed in to change notification settings - Fork 203
Description
Hello,
I can't up Allure server with https.
Bellow my yml:
`version: "3"
services:
allure-docker-service:
image: "frankescobar/allure-docker-service"
environment:
TLS: 1
CHECK_RESULTS_EVERY_SECONDS: NONE
KEEP_HISTORY: 1
KEEP_HISTORY_LATEST: 100
SECURITY_USER: "admin"
SECURITY_PASS: "ADMIN"
SECURITY_ENABLED: 1
ports:
- "5050:5050"
volumes:
- ${PWD}/projects:/app/projects
allure-ui:
image: "frankescobar/allure-docker-service-ui"
environment:
TLS: 1
ALLURE_DOCKER_PUBLIC_API_ENABLED: 1
ALLURE_DOCKER_PUBLIC_API_URL: "http://localhost:5050"
ALLURE_DOCKER_PUBLIC_API_URL_PREFIX: ""
SECURITY_USER: "admin"
SECURITY_PASS: "ADMIN"
SECURITY_ENABLED: 1
ports:
- "5252:5252"`
When I change ALLURE_DOCKER_PUBLIC_API_URL to "https://localhost:5050" then up allure server
and got to https://localhost:5252 I get the next error:
and got to https://localhost:5050 I get the next error:
What is wrong with my yml?
FYI with ALLURE_DOCKER_PUBLIC_API_URL: "http://localhost:5050" the server is working fine but it is a critical issue for my company to use http not https
Thanks in advance

