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: nginx-proxy/docker-gen
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.13.0
Choose a base ref
...
head repository: nginx-proxy/docker-gen
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.13.1
Choose a head ref
  • 4 commits
  • 3 files changed
  • 2 contributors

Commits on May 7, 2024

  1. build: bump golang from 1.22.2 to 1.22.3

    Bumps golang from 1.22.2 to 1.22.3.
    
    ---
    updated-dependencies:
    - dependency-name: golang
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored May 7, 2024
    Copy the full SHA
    73a5302 View commit details
  2. Merge pull request #609 from nginx-proxy/dependabot/docker/golang-1.22.3

    build: bump golang from 1.22.2 to 1.22.3
    buchdag authored May 7, 2024
    Copy the full SHA
    a4f77bc View commit details

Commits on May 14, 2024

  1. fix: don't include stopped containers by default

    buchdag committed May 14, 2024
    Copy the full SHA
    32b2c9f View commit details
  2. Merge pull request #611 from nginx-proxy/include-stopped

    fix: don't include stopped containers by default
    buchdag authored May 14, 2024
    Copy the full SHA
    82bddc6 View commit details
Showing with 3 additions and 3 deletions.
  1. +1 −1 Dockerfile.alpine
  2. +1 −1 Dockerfile.debian
  3. +1 −1 cmd/docker-gen/main.go
2 changes: 1 addition & 1 deletion Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG DOCKER_GEN_VERSION=main

# Build docker-gen from scratch
FROM --platform=$BUILDPLATFORM golang:1.22.2-alpine as go-builder
FROM --platform=$BUILDPLATFORM golang:1.22.3-alpine as go-builder

ENV CGO_ENABLED=0

2 changes: 1 addition & 1 deletion Dockerfile.debian
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG DOCKER_GEN_VERSION=main

# Build docker-gen from scratch
FROM --platform=$BUILDPLATFORM golang:1.22.2 as go-builder
FROM --platform=$BUILDPLATFORM golang:1.22.3 as go-builder

ENV CGO_ENABLED=0

2 changes: 1 addition & 1 deletion cmd/docker-gen/main.go
Original file line number Diff line number Diff line change
@@ -165,7 +165,7 @@ func main() {
Config: []config.Config{cfg}}
}

all := true
all := false
for _, config := range configs.Config {
if config.IncludeStopped {
all = true