Compare commits

...

6 Commits

Author SHA1 Message Date
Sambo Chea 148519fb43 add heroku 2020-04-16 13:43:37 +07:00
CrazyMax 568e2d961e
Switch to Open Container Specification labels as label-schema.org ones are deprecated 2020-04-07 19:58:43 +02:00
CrazyMax b6570cbf4a
Settings 2020-02-12 23:11:03 +01:00
CrazyMax d128133e79
JetBrains License Server 22218
AdoptOpenJDK JRE 13
2020-02-04 18:36:29 +01:00
CrazyMax 61df733099
Updte bug report tpl 2020-02-04 18:36:03 +01:00
CrazyMax 62de4c614c
Fix timezone 2019-12-07 16:09:30 +01:00
7 changed files with 35 additions and 14 deletions

1
.github/CODEOWNERS vendored Normal file
View File

@ -0,0 +1 @@
* @crazy-max

View File

@ -24,6 +24,7 @@ about: Create a report to help us improve
* Docker version (type `docker --version`) :
* Docker compose version if applicable (type `docker-compose --version`) :
* Platform (Debian 9, Ubuntu 18.04, ...) :
* System info (type `uname -a`) :
* Include all necessary configuration files : `docker-compose.yml`, `.env`, ...
### Docker info

View File

@ -1,5 +1,14 @@
# Changelog
## 22218-RC1 (2020/02/04)
* JetBrains License Server 22218
* AdoptOpenJDK JRE 13
## 21137-RC5 (2019/12/07)
* Fix timezone
## 21137-RC4 (2019/11/28)
* Proxy type defaults to `https`

View File

@ -1,5 +1,5 @@
# syntax=docker/dockerfile:experimental
FROM --platform=${TARGETPLATFORM:-linux/amd64} adoptopenjdk:12-jre-hotspot as suexec
FROM --platform=${TARGETPLATFORM:-linux/amd64} adoptopenjdk:13-jre-hotspot as suexec
ARG BUILD_DATE
ARG VCS_REF
@ -18,26 +18,26 @@ RUN apt-get update \
&& chown root:root /usr/local/bin/su-exec \
&& chmod 0755 /usr/local/bin/su-exec
FROM --platform=${TARGETPLATFORM:-linux/amd64} adoptopenjdk:12-jre-hotspot
FROM --platform=${TARGETPLATFORM:-linux/amd64} adoptopenjdk:13-jre-hotspot
ARG BUILD_DATE
ARG VCS_REF
ARG VERSION
LABEL maintainer="CrazyMax" \
org.label-schema.build-date=$BUILD_DATE \
org.label-schema.name="jetbrains-license-server" \
org.label-schema.description="JetBrains License Server" \
org.label-schema.version=$VERSION \
org.label-schema.url="https://github.com/crazy-max/docker-jetbrains-license-server" \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vcs-url="https://github.com/crazy-max/docker-jetbrains-license-server" \
org.label-schema.vendor="CrazyMax" \
org.label-schema.schema-version="1.0"
org.opencontainers.image.created=$BUILD_DATE \
org.opencontainers.image.url="https://github.com/crazy-max/docker-jetbrains-license-server" \
org.opencontainers.image.source="https://github.com/crazy-max/docker-jetbrains-license-server" \
org.opencontainers.image.version=$VERSION \
org.opencontainers.image.revision=$VCS_REF \
org.opencontainers.image.vendor="CrazyMax" \
org.opencontainers.image.title="JetBrains License Server" \
org.opencontainers.image.description="JetBrains License Server" \
org.opencontainers.image.licenses="MIT"
ENV JLS_PATH="/opt/jetbrains-license-server" \
JLS_VERSION="21137" \
JLS_SHA256="05241f0d41644ecc7679a879c829e57d423e151b997b45c5e986d498d6fe2f21" \
JLS_VERSION="22218" \
JLS_SHA256="f68027a8b2b4f2d9b03fe0b0fef4a9ffc0fdfaf2657ab26d545777973311b601" \
TZ="UTC" \
PUID="1000" \
PGID="1000"

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2018-2019 CrazyMax
Copyright (c) 2018-2020 CrazyMax
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -1,5 +1,7 @@
#!/bin/sh
TZ=${TZ:-UTC}
JLS_PATH="/opt/jetbrains-license-server"
JLS_LISTEN_ADDRESS="0.0.0.0"
JLS_PORT=8000
@ -17,6 +19,11 @@ if [ -n "${PUID}" ] && [ "${PUID}" != "$(id -u jls)" ]; then
sed -i -e "s/^jls:\([^:]*\):[0-9]*:\([0-9]*\)/jls:\1:${PUID}:\2/" /etc/passwd
fi
# Timezone
echo "Setting timezone to ${TZ}..."
ln -snf /usr/share/zoneinfo/${TZ} /etc/localtime
echo ${TZ} > /etc/timezone
# Init
echo "Initializing files and folders..."
su-exec jls:jls touch "/data/access-config.json"

3
heroku.yml Normal file
View File

@ -0,0 +1,3 @@
build:
docker:
web: Dockerfile