wpsh/local

A Docker Compose development environment for any project.

Installs: 109 946

Dependents: 6

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 6

Language:Shell

0.2.3 2019-06-12 10:54 UTC

This package is auto-updated.

Last update: 2024-04-05 23:54:44 UTC


README

Build Status

Add this to any project with docker-compose.yaml to run the containers inside Vagrant. Useful for creating friendly development environments with beautiful hostnames (no port numbers) that don't require Docker on the host machine.

Requirements

We suggest using Homebrew to install the dependencies:

brew cask install virtualbox vagrant

Install

  1. Add this package to your project using Composer:

     composer require --dev wpsh/local
    
  2. Add Vagrantfile to the root of your project with the following contents:

     # Configure the hostname.
     Vagrant.configure(2) do |config|
       config.vm.hostname = 'wpsh-local'
     end
    
     load File.join(
       File.dirname(__FILE__),
       'vendor/wpsh/local/Vagrantfile'
     )
    

    where vendor/wpsh/local is the relative path to this packge.

  3. Create docker-compose.yaml in the root of your project to define the virtual environment.

Examples

Development

Travis CI lints all shell scripts in scripts/vagrant using shellcheck and Vagrantfile (and other Ruby files) using rubocop.

To Do

  • Add support for installing via npm.
  • Automatically create the project Vagrantfile on the first install.

Credits

Created by Kaspars Dambis.

License

See the LICENSE file for license rights and limitations (MIT).