Upgrade to JetBrains License Server 17437

This commit is contained in:
CrazyMax 2018-07-30 16:17:47 +02:00
parent 9752d4b930
commit ac739e60cf
3 changed files with 41 additions and 39 deletions

View File

@ -1,5 +1,9 @@
# Changelog # Changelog
## 17437-RC1 (2018/07/30)
* Upgrade to JetBrains License Server 17437
## 17211-RC1 (2018/06/29) ## 17211-RC1 (2018/06/29)
* Upgrade to JetBrains License Server 17211 * Upgrade to JetBrains License Server 17211

View File

@ -19,8 +19,8 @@ RUN apk --update --no-cache add tzdata \
&& rm -rf /var/cache/apk/* /tmp/* && rm -rf /var/cache/apk/* /tmp/*
ENV JLS_PATH="/opt/jetbrains-license-server" \ ENV JLS_PATH="/opt/jetbrains-license-server" \
JLS_VERSION="17211" \ JLS_VERSION="17437" \
JLS_SHA256="d935f4607cd281135b141773dfc188ff253ac5932b16ee288787036e8693dd41" JLS_SHA256="9f15c63e9f40e2bf399b503d77a53ad3e4ff5deefb5d8bf29fad6d281b4be4ca"
ADD entrypoint.sh /entrypoint.sh ADD entrypoint.sh /entrypoint.sh

View File

@ -1,36 +1,34 @@
version: '3.2' version: "3.2"
services: services:
traefik: traefik:
image: traefik:1.6-alpine image: traefik:1.6-alpine
command: command:
- --logLevel=INFO - "--logLevel=INFO"
- --defaultentrypoints=http,https - "--defaultentrypoints=http,https"
- --entryPoints=Name:http Address::80 Redirect.EntryPoint:https - "--entryPoints=Name:http Address::80 Redirect.EntryPoint:https"
- --entryPoints=Name:https Address::443 TLS - "--entryPoints=Name:https Address::443 TLS"
- --docker - "--docker"
- --docker.exposedbydefault=false - "--docker.exposedbydefault=false"
- --docker.domain=example.com - "--docker.domain=example.com"
- --acme=false - "--acme=false"
- --acme.acmelogging=true - "--acme.acmelogging=true"
- --acme.email=webmaster@example.com - "--acme.email=webmaster@example.com"
- --acme.storage=acme.json - "--acme.storage=acme.json"
- --acme.entryPoint=https - "--acme.entryPoint=https"
- --acme.onhostrule=true - "--acme.onhostrule=true"
- --acme.httpchallenge=true - "--acme.httpchallenge=true"
- --acme.httpchallenge.entrypoint=http - "--acme.httpchallenge.entrypoint=http"
ports: ports:
- target: 80 - target: 80
published: 80 published: 80
protocol: tcp protocol: tcp
mode: host
- target: 443 - target: 443
published: 443 published: 443
protocol: tcp protocol: tcp
mode: host
volumes: volumes:
- ./acme.json:/acme.json - "./acme.json:/acme.json"
- /var/run/docker.sock:/var/run/docker.sock - "/var/run/docker.sock:/var/run/docker.sock"
restart: always restart: always
app: app:
@ -38,25 +36,25 @@ services:
depends_on: depends_on:
- traefik - traefik
volumes: volumes:
- jetbrains-license-server:/data - "jetbrains-license-server:/data"
labels: labels:
- traefik.enable=true - "traefik.enable=true"
- traefik.backend=jetbrains-license-server - "traefik.backend=jetbrains-license-server"
- traefik.port=80 - "traefik.port=80"
- traefik.frontend.rule=Host:jetbrains-license-server.example.com,an-other-host.example.com - "traefik.frontend.rule=Host:jetbrains-license-server.example.com,an-other-host.example.com"
environment: environment:
- TZ=Europe/Paris - "TZ=Europe/Paris"
- JLS_VIRTUAL_HOSTS=jetbrains-license-server.example.com,an-other-host.example.com - "JLS_VIRTUAL_HOSTS=jetbrains-license-server.example.com,an-other-host.example.com"
- JLS_CONTEXT=/ - "JLS_CONTEXT=/"
- JLS_ACCESS_CONFIG=/data/access-config.json - "JLS_ACCESS_CONFIG=/data/access-config.json"
- JLS_STATS_RECIPIENTS=webmaster@example.com,an-other-address@example.com - "JLS_STATS_RECIPIENTS=webmaster@example.com,an-other-address@example.com"
- JLS_REPORT_OUT_OF_LICENSE=90 - "JLS_REPORT_OUT_OF_LICENSE=90"
- JLS_SMTP_SERVER=smtp.example.com - "JLS_SMTP_SERVER=smtp.example.com"
- JLS_SMTP_PORT=25 - "JLS_SMTP_PORT=25"
- JLS_SMTP_USERNAME=smtp@example.com - "JLS_SMTP_USERNAME=smtp@example.com"
- JLS_SMTP_PASSWORD= - "JLS_SMTP_PASSWORD="
- JLS_STATS_FROM=jetbrains@example.com - "JLS_STATS_FROM=jetbrains@example.com"
- JLS_STATS_TOKEN=1BFC67F51AAF99E85C2347B72E62C - "JLS_STATS_TOKEN=1BFC67F51AAF99E85C2347B72E62C"
restart: always restart: always
volumes: volumes: