Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
43f331f798 | ||
|
|
1b7c1ccafa | ||
|
|
744f335ca1 | ||
|
|
ab88f3f93f | ||
|
|
dd189e58da | ||
|
|
af04242028 |
3
.github/FUNDING.yml
vendored
3
.github/FUNDING.yml
vendored
@@ -1 +1,2 @@
|
||||
custom: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3BXL8EBDJALHQ
|
||||
patreon: crazymax
|
||||
custom: https://www.paypal.me/crazyws
|
||||
|
||||
BIN
.res/patreon.png
Normal file
BIN
.res/patreon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.8 KiB |
@@ -5,7 +5,7 @@ services:
|
||||
|
||||
env:
|
||||
global:
|
||||
- VERSION=20267
|
||||
- VERSION=20308
|
||||
- DOCKER_LOGIN=crazymax
|
||||
- DOCKER_USERNAME=crazymax
|
||||
- DOCKER_REPONAME=jetbrains-license-server
|
||||
|
||||
13
CHANGELOG.md
13
CHANGELOG.md
@@ -1,5 +1,18 @@
|
||||
# Changelog
|
||||
|
||||
## 20308-RC2 (2019/08/04)
|
||||
|
||||
* Add healthcheck
|
||||
|
||||
## 20308-RC1 (2019/07/30)
|
||||
|
||||
* JetBrains License Server 20308
|
||||
|
||||
## 20267-RC2 (2019/07/22)
|
||||
|
||||
* OpenJDK JRE 12
|
||||
* Alpine Linux 3.10
|
||||
|
||||
## 20267-RC1 (2019/07/19)
|
||||
|
||||
* JetBrains License Server 20267
|
||||
|
||||
12
Dockerfile
12
Dockerfile
@@ -1,4 +1,4 @@
|
||||
FROM openjdk:8-jre-alpine
|
||||
FROM adoptopenjdk/openjdk12:alpine-jre
|
||||
|
||||
ARG BUILD_DATE
|
||||
ARG VCS_REF
|
||||
@@ -16,15 +16,16 @@ LABEL maintainer="CrazyMax" \
|
||||
org.label-schema.schema-version="1.0"
|
||||
|
||||
ENV JLS_PATH="/opt/jetbrains-license-server" \
|
||||
JLS_VERSION="20267" \
|
||||
JLS_SHA256="5a32e66a05cc52c6ca030de4507b04afedff564e65c47e2fbfe3e7439ab611aa"
|
||||
JLS_VERSION="20308" \
|
||||
JLS_SHA256="15cd436d41b1af8e273b8f8b037d654a9e9d9ca8a5f188e08426ca1024ba143a"
|
||||
|
||||
COPY entrypoint.sh /entrypoint.sh
|
||||
|
||||
RUN apk --update --no-cache add \
|
||||
tzdata \
|
||||
&& apk --update --no-cache add -t build-dependencies \
|
||||
curl zip \
|
||||
curl \
|
||||
zip \
|
||||
&& mkdir -p "$JLS_PATH" \
|
||||
&& curl -L "https://download.jetbrains.com/lcsrv/license-server-installer.zip" -o "/tmp/jls.zip" \
|
||||
&& echo "$JLS_SHA256 /tmp/jls.zip" | sha256sum -c - | grep OK \
|
||||
@@ -41,3 +42,6 @@ VOLUME [ "/data" ]
|
||||
|
||||
ENTRYPOINT [ "/entrypoint.sh" ]
|
||||
CMD [ "/usr/local/bin/license-server", "run" ]
|
||||
|
||||
HEALTHCHECK --interval=10s --timeout=5s \
|
||||
CMD license-server status
|
||||
|
||||
@@ -7,7 +7,8 @@
|
||||
<a href="https://hub.docker.com/r/crazymax/jetbrains-license-server/"><img src="https://img.shields.io/docker/pulls/crazymax/jetbrains-license-server.svg?style=flat-square" alt="Docker Pulls"></a>
|
||||
<a href="https://quay.io/repository/crazymax/jetbrains-license-server"><img src="https://quay.io/repository/crazymax/jetbrains-license-server/status?style=flat-square" alt="Docker Repository on Quay"></a>
|
||||
<a href="https://www.codacy.com/app/crazy-max/docker-jetbrains-license-server"><img src="https://img.shields.io/codacy/grade/eb420bc3e6ed49ff97cc261602228efa.svg?style=flat-square" alt="Code Quality"></a>
|
||||
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3BXL8EBDJALHQ"><img src="https://img.shields.io/badge/donate-paypal-7057ff.svg?style=flat-square" alt="Donate Paypal"></a>
|
||||
<br /><a href="https://www.patreon.com/crazymax"><img src="https://img.shields.io/badge/donate-patreon-fb664e.svg?style=flat-square" alt="Support me on Patreon"></a>
|
||||
<a href="https://www.paypal.me/crazyws"><img src="https://img.shields.io/badge/donate-paypal-7057ff.svg?style=flat-square" alt="Donate Paypal"></a>
|
||||
</p>
|
||||
|
||||
## About
|
||||
@@ -105,7 +106,8 @@ All kinds of contributions are welcome :raised_hands:!<br />
|
||||
The most basic way to show your support is to star :star2: the project, or to raise issues :speech_balloon:<br />
|
||||
But we're not gonna lie to each other, I'd rather you buy me a beer or two :beers:!
|
||||
|
||||
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3BXL8EBDJALHQ)
|
||||
[](https://www.patreon.com/crazymax)
|
||||
[](https://www.paypal.me/crazyws)
|
||||
|
||||
## License
|
||||
|
||||
|
||||
Reference in New Issue
Block a user