-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
29 lines (27 loc) · 1014 Bytes
/
docker-compose.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
version: "3"
networks:
traefik-network:
external: true
services:
jira-dashboard:
build:
context: .
dockerfile: ./Dockerfile
image: jira-dashboard
platform: linux/x86_64
ports:
- "10002:10002"
networks:
- traefik-network
labels:
- "traefik.enable=true"
- "traefik.http.routers.jira-dashboard.rule=Host(`dashboard.timefractal.com`)"
- "traefik.http.routers.jira-dashboard.service=jira-dashboard"
- "traefik.http.routers.jira-dashboard.entrypoints=websecure"
- "traefik.http.services.jira-dashboard.loadbalancer.server.port=10002"
- "traefik.http.routers.jira-dashboard.tls=true"
- "traefik.http.routers.jira-dashboard.tls.certresolver=letsencrypt"
- "traefik.http.services.jira-dashboard.loadbalancer.passhostheader=true"
- "traefik.http.routers.jira-dashboard.middlewares=compresstraefik"
- "traefik.http.middlewares.compresstraefik.compress=true"
- "traefik.docker.network=traefik-network"