-
Notifications
You must be signed in to change notification settings - Fork 44
/
docker-compose-dev.yml
37 lines (35 loc) · 986 Bytes
/
docker-compose-dev.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
version: '3'
services:
allure-docker-service-ui:
build:
context: ../allure-docker-service-ui
dockerfile: docker/Dockerfile
args:
BUILD_DATE: "na"
VERSION: "na"
VCS_REF: "na"
environment:
ALLURE_DOCKER_PUBLIC_API_URL: "http://localhost:5050"
ALLURE_DOCKER_PUBLIC_API_URL_PREFIX: ""
#URL_PREFIX: "/my-prefix"
ports:
- "7474:5252"
allure:
image: "frankescobar/allure-docker-service"
environment:
CHECK_RESULTS_EVERY_SECONDS: NONE
KEEP_HISTORY: 1
KEEP_HISTORY_LATEST: 12
SECURITY_USER: my_username
SECURITY_PASS: my_password
SECURITY_VIEWER_USER: "view_user"
SECURITY_VIEWER_PASS: "view_pass"
SECURITY_ENABLED: 1
MAKE_VIEWER_ENDPOINTS_PUBLIC: 0
#URL_PREFIX: /my-prefix
#ACCESS_TOKEN_EXPIRES_IN_SECONDS: 10
#REFRESH_TOKEN_EXPIRES_IN_SECONDS: 10
ports:
- "5050:5050"
volumes:
- ${PWD}/projects:/app/projects