Go to file
CrazyMax 22a934e981 Update travis 2018-06-29 14:13:54 +02:00
.res Update logo 2018-06-07 20:06:25 +02:00
docker Upgrade to JetBrains License Server 17211 2018-06-29 09:57:56 +02:00
.editorconfig Initial version based on JetBrains License Server 15802 2018-02-01 20:36:09 +01:00
.gitignore Update ignore 2018-02-16 02:02:06 +01:00
.travis.yml Update travis 2018-06-29 14:13:54 +02:00
CHANGELOG.md Upgrade to JetBrains License Server 17211 2018-06-29 09:57:56 +02:00
LICENSE Initial version based on JetBrains License Server 15802 2018-02-01 20:36:09 +01:00
README.md Remove beerpay infos 2018-05-25 10:45:23 +02:00

Version Build Status Docker Stars Docker Pulls Docker Repository on Quay Donate Paypal

About

🐳 JetBrains License Server Docker image based on Alpine Linux.
If you are interested, check out my other 🐳 Docker images!

Features

Included

  • License server completely customizable via environment variables
  • Registration data and configuration in a single directory

From docker-compose

  • Traefik as reverse proxy and creation/renewal of Let's Encrypt certificates

Docker

Environment variables

  • TZ : The timezone assigned to the container (default UTC)
  • JLS_VIRTUAL_HOSTS : Virtual hosts where license server will be available (comma delimited for several hosts)
  • JLS_CONTEXT : Context path used by the license server (default /)
  • JLS_ACCESS_CONFIG : JSON file to configure user restrictions (default /data/access-config.json)
  • JLS_STATS_RECIPIENTS : Reports recipients email addresses for stats (comma delimited)
  • JLS_REPORT_OUT_OF_LICENSE : Warn about lack of licenses every hour following the percentage threshold (default 0)
  • JLS_SMTP_SERVER : SMTP server host to use for sending stats (stats disabled if empty)
  • JLS_SMTP_PORT : SMTP server port (default 25)
  • JLS_SMTP_USERNAME : SMTP username (auth disabled if empty)
  • JLS_SMTP_PASSWORD : SMTP password (auth disabled if empty)
  • JLS_STATS_FROM : From address for stats emails
  • JLS_STATS_TOKEN : Enables an auth token for the stats API at /reportApi (HTTP POST)

Volumes

Ports

  • 80 : Jetbrains License Server HTTP port

Usage

Docker compose is the recommended way to run this image. You can use the following docker compose template, then run the container :

touch acme.json
chmod 600 acme.json
docker-compose up -d
docker-compose logs -f

Or use the following minimal command :

$ docker run -d -p 8000:80 --name jetbrains-license-server \
  -e TZ="Europe/Paris" \
  -e JLS_VIRTUAL_HOSTS=jetbrains-license-server.example.com \
  -v $(pwd)/data:/data \
  crazymax/jetbrains-license-server:latest

Update

Recreate the container whenever i push an update :

docker-compose pull
docker-compose up -d

Troubleshooting

If you have any trouble using the license server, check the official Troubleshooting page of Jetbrains.

Error 403 Passed value of header "Host" is not allowed

If you've got the following message :

Passed value of header "Host" is not allowed. Please contact your license server administrator.

That's because the license server is running behind a reverse proxy. Please configure virtual hosts using the JLS_VIRTUAL_HOSTS variable.

How can i help ?

All kinds of contributions are welcomed 🙌!
The most basic way to show your support is to star 🌟 the project, or to raise issues 💬
But we're not gonna lie to each other, I'd rather you buy me a beer or two 🍻!

Paypal

License

MIT. See LICENSE for more details.