mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:36:13 +01:00
16aee3c836
The TYPO3 core `runTests.sh` contains the `-u` option to update the images and remove dangling images. Providing an image name and a `--filter` option is not supported by podmand and has not been discovered yet in the TYPO3 core implementation yet - and adopted with the recently sync of this repository implementation to the TYPO3 one. Both supported docker binaries `docker` and `podman` supportes filtering images using the `reference` filter option. Therefore, this change modifies the dangling image remove command to use double filter options. To verify that double filtering can be used, following command can be executed if already some images have been downloaded: ```shell podman images \ --filter "reference=ghcr.io/sbuerk/demo-core-testing-*" --filter "dangling=false" --format "{{.ID}}" docker images \ --filter "reference=ghcr.io/sbuerk/demo-core-testing-*" --filter "dangling=false" --format "{{.ID}}" ``` **Note:** `dangling=false` is used here instead of `dangling=true` like in `runTests.sh` Resolves: #1088 |
||
---|---|---|
.. | ||
bin | ||
Scripts |