Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Releases: ipunkt/rancherize

Docker user handling

29 Sep 12:20
Compare
Choose a tag to compare

The docker container now includes an entrypoint to handle the following:

  • USER_ID=$(id -u) GROUP_ID=$(id -g) - sync your user and group id into the container. This will make rancherize run as your user and thus the generated files in .rancherize will also belong to you.
  • Run commands inside the container. If you call the rancherize container with /bin/sh as command it will now execute /bin/sh instead of calling rancherize /bin/sh

fpm service name fix

15 Sep 11:05
Compare
Choose a tag to compare
refs #41

A PHP-FPM Service is now created with the mainServices name as prefix

environment:version fix

15 Sep 08:59
Compare
Choose a tag to compare

The command environment:version was broken when the instantiation was moved into the container.

Fixed by moving the instantation in environment:version to the new way.

PHP Options

14 Sep 15:27
Compare
Choose a tag to compare

Allow setting memory limit, post limit, uploaded_max_filesize, date.timezone for the fpm versions trough the rancherize.json

Bugfix release for docker-compose

25 Aug 06:33
Compare
Choose a tag to compare
2.15.1

fix docker-compose

Use Environment Variables in your CI

24 Aug 16:14
Compare
Choose a tag to compare
2.15.0

Merge pull request #32 from ipunkt/feature-use-environment-vars-for-a…

ArrayAdder fix

17 Aug 07:37
Compare
Choose a tag to compare

container('config-array-adder') was returning the wrong object type. Fixed in this patch

Plugin version fix

15 Aug 08:19
Compare
Choose a tag to compare

Installing a plugin with a composer version restraint previously registered the plugin with the restraint instead of provider/package.
This would only be a problem when updating a plugin with plugin:install provider/package:newversion and then only cause the plugin provider to be loaded twice but might cause weird problems if the provider required to be run only once.

Workdir and ArrayAdder

14 Aug 09:50
Compare
Choose a tag to compare

Added working_dir support for Service via setWorkDir and moved WebserverBlueprint::addAll into its own helper class so it can be used by other blueprints.

Bugfix for automated build with docker-hub

04 Aug 09:32
Compare
Choose a tag to compare
2.14.1

Merge remote-tracking branch 'origin/master'