debuerreotype / docker-debian-artifacts

Official builds of debuerreotype-generated Debian tarballs for use in Docker
https://docker.debian.net
Apache License 2.0
317 stars 104 forks source link

Command inside container does not behave the same on different hosts #164

Closed davidloubere closed 2 years ago

davidloubere commented 2 years ago

Running the following command inside a container built from the debian:stretch-slim does not output the same result whether the host is macOS or Ubuntu.

$ grep -Rnl path/ -e 'search' | xargs grep -e 'expected'

Results:

# Ubuntu 22.04 LTS / Docker version 20.10.14, build a224086
expected
expected
...

# macOS 12.4 (21F79) / Docker version 20.10.16, build aa7e414
path/to/file_having_search_1:expected
path/to/file_having_search_2:expected
...

Notice the slight difference of Docker versions.

davidloubere commented 2 years ago

Everything working as expected after rebooting the macOS host, so I'm closing the issue.

Sorry for the inconvenience.