Go to file
CrazyMax a8d867a41f
Update CHANGELOG
2019-10-10 16:14:50 +02:00
.github Switch to GitHub Actions 2019-10-10 16:04:08 +02:00
.res Update README 2019-10-10 15:20:39 +02:00
examples/compose Bind to unprivileged port : 8000 2019-01-22 19:49:15 +01:00
.dockerignore Switch to GitHub Actions 2019-10-10 16:04:08 +02:00
.editorconfig TravisCI notif 2019-04-28 20:04:57 +02:00
.gitattributes Linguist 2019-03-20 00:16:35 +01:00
.gitignore Update ignore 2018-02-16 02:02:06 +01:00
CHANGELOG.md Update CHANGELOG 2019-10-10 16:14:50 +02:00
Dockerfile Multi-platform Docker image 2019-10-10 15:58:56 +02:00
entrypoint.sh Multi-platform Docker image 2019-10-10 15:58:56 +02:00
LICENSE New year 2019-01-08 21:51:11 +01:00
README.md Update README 2019-10-10 16:14:40 +02:00

Latest Version Build Status Docker Stars Docker Pulls Code Quality
Support me on Patreon Donate Paypal

About

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

💡 Want to be notified of new releases? Check out 🔔 Diun (Docker Image Update Notifier) project!

Features

  • License server completely customizable via environment variables
  • Registration data and configuration in a single directory
  • Traefik as reverse proxy and creation/renewal of Let's Encrypt certificates

Docker

Multi-platform image

Following platforms for this image are available:

$ docker run --rm mplatform/mquery crazymax/jetbrains-license-server:latest
Image: crazymax/jetbrains-license-server:latest
 * Manifest List: Yes
 * Supported platforms:
   - linux/amd64
   - linux/arm64
   - linux/ppc64le
   - linux/s390x

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

⚠️ Note that the volume should be owned by uid 1000 and gid 1000. If you don't give the volume correct permissions, the container may not start.

Ports

  • 8000 : Jetbrains License Server HTTP port

Use this image

Docker Compose

Docker compose is the recommended way to run this image. Copy the content of folder examples/compose in /var/jls/ on your host for example. Edit the compose and env files with your preferences and run the following commands :

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

Command line

You can also use the following minimal command :

$ docker run -d -p 8000:8000 --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 welcome 🙌!
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 🍻!

Support me on Patreon Paypal Donate

License

MIT. See LICENSE for more details.