Releases: ipunkt/rancherize
Docker user handling
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
refs #41 A PHP-FPM Service is now created with the mainServices name as prefix
environment:version fix
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
Allow setting memory limit, post limit, uploaded_max_filesize, date.timezone for the fpm versions trough the rancherize.json
Bugfix release for docker-compose
2.15.1 fix docker-compose
Use Environment Variables in your CI
2.15.0 Merge pull request #32 from ipunkt/feature-use-environment-vars-for-a…
ArrayAdder fix
container('config-array-adder')
was returning the wrong object type. Fixed in this patch
Plugin version fix
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
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
2.14.1 Merge remote-tracking branch 'origin/master'