container-structure-test icon indicating copy to clipboard operation
container-structure-test copied to clipboard

validate the structure of your container images

Results 104 container-structure-test issues
Sort by recently updated
recently updated
newest added

Currently the latest image is tagged to :debug. In case you need to switch to an earlier version, you need the SHA of the image.

Hi! I was searching about Good-First-Issues in Go language, so I found this repo. I tried to read the source code and I was thinking that what can I do....

Hello there 👋 First of all thanks for this really useful tool! While trying the junit output feature from the latest `v1.10.0`, I was not able to feed it to...

Although only recently having entered the containers space, I have come to understand the importance of Container Structure Test. Docker and other developers of container infrastructure emphasize the value of...

Is there a plan to support podman/buildah for doing command test in container structure test. As for doing command test today, it needs docker today.

enhancement
help wanted
question

Something in the release script is wonky, causing the `*.sha256` checksum files to get deleted right before copying everything to the release GCS bucket - I had to create these...

chore

I'm exploring this tool and wrote a super basic [`config.yml`](https://github.com/edouard-lopez/explore-container-testing/commit/0555855973e62c36339e940a20b049e90477734c): schemaVersion: 2.0.0 fileExistenceTests: - name: 'Pure Test directory exists' path: '/tmp/.pure/' shouldExist: true permissions: 'drwxr-xr-x' uid: 1000 gid: 1000 isExecutableBy:...

Hello. I have the following 2 tests defined: ``` fileContentTests: - name: 'hosts check' path: '/etc/hosts' expectedContents: [".*127.*"] commandTests: - name: "check hosts" command: "cat" args: ["/etc/hosts"] expectedOutput: [".*127.*"] exitCode:...

Some docker images are meant to be interacted with, and operate differently between interactive and non-interactive runs. https://github.com/SeisoLLC/easy_infra is an example. Please allow a method to specify interactive vs non-interactive...