Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: puppetlabs/puppetlabs-docker
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.4.0
Choose a base ref
...
head repository: puppetlabs/puppetlabs-docker
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.5.0
Choose a head ref
  • 9 commits
  • 17 files changed
  • 4 contributors

Commits on Mar 4, 2019

  1. docker::services: Fix using multiple published ports (#447)

    While the class docker::services already allowed arrays to be
    specified for `publish` ports, it didn't handle this correctly since
    this array was simply converted to a string and passed onto Docker,
    like so:
    
        --publish '["80:80", "443:443"]'
    
    To correctly publish multiple ports, the `--publish` parameter has to
    be called specified for each port.
    
        --publish '80:80' --publish '443:443'
    
    This patch also introduces a new spec test to check this behavior
    jacksgt authored and davejrt committed Mar 4, 2019
    Configuration menu
    Copy the full SHA
    a204679 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    059d8a8 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2019

  1. Configuration menu
    Copy the full SHA
    226be6c View commit details
    Browse the repository at this point in the history
  2. Docker::Services: Add networks parameter for swarm services (#450)

    Allows attaching the service to one or multiple networks
    jacksgt authored and davejrt committed Mar 8, 2019
    Configuration menu
    Copy the full SHA
    15ee0e4 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2019

  1. Docker::Services:: fix command parameter used with an array (#452)

    The module previously allowed specifying the command parameter to
    docker::services as an array, but did not correctly parse it as
    such (output with square brackets and quotations marks to docker).
    This patch fixes this behavior.
    jacksgt authored and davejrt committed Mar 11, 2019
    Configuration menu
    Copy the full SHA
    fb2d756 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1352bb6 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2019

  1. Configuration menu
    Copy the full SHA
    c8b5902 View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2019

  1. Configuration menu
    Copy the full SHA
    84e8edc View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2019

  1. release 3.5.0 (#458)

    davejrt authored and sheenaajay committed Mar 14, 2019
    1 Configuration menu
    Copy the full SHA
    e59ec60 View commit details
    Browse the repository at this point in the history
Loading