forked from plantuml/plantuml.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
24 lines (24 loc) · 854 Bytes
/
docker-compose.yml
File metadata and controls
24 lines (24 loc) · 854 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
version: "3.1"
services:
plantumljs:
build: .
labels:
traefik.docker.network: proxy
traefik.enable: "true"
traefik.http.routers.plantumljs-secure.entrypoints: websecure
traefik.http.routers.plantumljs-secure.middlewares: default@file
traefik.http.routers.plantumljs-secure.rule: Host(`${DOMAIN_NAME}`)
traefik.http.routers.plantumljs-secure.service: plantumljs
traefik.http.routers.plantumljs-secure.tls: "true"
traefik.http.routers.plantumljs-secure.tls.certresolver: http_resolver
traefik.http.routers.plantumljs.entrypoints: web
traefik.http.routers.plantumljs.rule: Host(`${DOMAIN_NAME}`)
traefik.http.services.plantumljs.loadbalancer.server.port: "80"
restart: always
networks:
default: null
proxy: null
networks:
default:
proxy:
external: true