Skip to content

swacedigital/unleash-docker

 
 

Repository files navigation

Use this image

We have published this image on docker-hub.

docker pull unleashorg/unleash-server:3.4
docker run -d -e DATABASE_URL=postgres://user:pass@10.200.221.11:5432/unleash unleashorg/unleash-server

Specifying secrets as environment variables are considered a bad security practice. Therefore, you can instead specify a file where unleash can read the database secret. This is done via the DATABASE_URL_FILE environment variable.

Work locally with this repo

Start by cloning this repository.

We have set up docker-compose to start postgres and the unleash server together. This makes it really fast to start up unleash locally without setting up a database or node.

$ docker-compose build
$ docker-compose up

Requirements

We are using docker-compose version 3.3 and it requires:

  • Docker engine 17.06.0+
  • Docker compose 1.14.0+

For more info, check out the compatibility matrix on Docker's website: compatibility-matrix

Upgrade version

When we upgrade the unleash-version this project should be tagged with the same version number.

git tag -a 3.4.2 -m "upgrade to unleash-server 3.4.2"
git push origin master --follow-tags

You might also want to update the minor tag:

git tag -d 3.4
git push origin :3.4
git tag -a 3.4 -m "Update 3.4 tag"
git push origin master --follow-tags

This will automatically trigger docker-hub to build the new tag.

Languages

  • JavaScript 95.6%
  • Dockerfile 4.4%