
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
chbuild is an open-source command line application written in Ruby. It's main purpose is to simplify web app development by running a site using Docker containers so you don't have to install Apache, PHP and PHP extensions on your own machine.
gem install chbuild
.chbuild.yml
file in the root of your repository$ chbuild start
to build the image, launch the MySQL container and the chbuild container$ chbuild restart
to restart the chbuild containerWhen you run the start
command the following will happen:
localhost:8088
When you run the restart
command the following will happen:
The following happens in the container when you start it:
env
section)before
sectionThe build file consists of sections: version
, use
, before
, env
.
The minimal YAML file for chbuild to work properly:
---
version: 1.0
Version of the build file. Currently this is the only required section.
Allowed values: 1.0
Example
---
version: 1.0
Specify the MySQL and PHP versions you want to use.
Current default PHP version: 5.6.25
At the moment specifying a PHP version is not working (to be implemented soon).
Default is the latest from Dockerhub
To connect:
Example
---
version: 1.0
use:
mysql: 5.6.20
Specify environment variables to use them in the before
script or in your site
Example
---
version: 1.0
env:
THE_ANSWER: 42
DOCTOR: Who
Run scrips before starting php-fpm.
Example
---
version: 1.0
before:
- composer install
---
version: 1.0
use:
mysql: 5.6.20
env:
YAML_DEFINED: envvar
ANOTHER_ENV_VAR: CHBuild
before:
- echo "Hello, $ANOTHER_ENV_VAR!<br />Generated at $(date)<br /> MySQL version $MYSQL_ENV_MYSQL_VERSION" > /www/index.php
$ chbuild help
Commands:
chbuild --version, -V # Current version
chbuild delete [-CIM] # Delete container, image or MySQL container(s)
chbuild help [COMMAND] # Describe available commands or one specific command
chbuild log # Get container log
chbuild restart # Restart chbuild container
chbuild start # Build and start everything
chbuild validate # Validate build definition file
Options:
-v, [--verbose], [--no-verbose]
-f, [--force]
After checking out the repo, run bin/setup
to install dependencies.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
If you can, please use the provided EditorConfig file!
The gem is available as open source under the terms of the MIT License. See more in LICENSE.txt
FAQs
Unknown package
We found that chbuild demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.
Security News
ESLint now supports parallel linting with a new --concurrency flag, delivering major speed gains and closing a 10-year-old feature request.
Research
/Security News
A malicious Go module posing as an SSH brute forcer exfiltrates stolen credentials to a Telegram bot controlled by a Russian-speaking threat actor.