-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
37 lines (34 loc) · 846 Bytes
/
Copy pathdocker-compose.yaml
File metadata and controls
37 lines (34 loc) · 846 Bytes
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
services:
qure:
image: dolanor/qure:latest
build:
context: .
dockerfile: Dockerfile
environment:
QURE_DOMAIN: ${QURE_DOMAIN}
QURE_HOST: ${QURE_HOST}
QURE_PORT: ${QURE_PORT}
QURE_DB_DIR: ${QURE_DB_DIR}
expose:
- 4444
ports:
- 4444:4444
volumes:
- "db:${QURE_DB_DIR}"
labels:
- "traefik.instance=dsuite"
- "traefik.enable=true"
- "traefik.docker.network=dsuite_front"
- "traefik.http.routers.qure.entrypoints=websecure"
- "traefik.http.routers.qure.tls.certresolver=myresolver"
- "traefik.http.routers.qure.rule=Host(`l.txg.re`)"
- "traefik.http.services.qure.loadbalancer.server.port=4444"
restart: always
networks:
- front
networks:
front:
external: true
name: dsuite_front
volumes:
db: