app-arch/torcx: Fix wrong reference to Docker 19.03

When selecting the docker-1.12-no profile, torcx failed because the
profile looked for 19.03 instead of 20.10.

Make the docker-1.12-no profile identical to the vendor profile so
that we don't have to update it.
This commit is contained in:
Kai Lueke 2021-12-01 17:29:50 +01:00
parent c52997681f
commit 48294d468a
2 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,7 @@
"images": [ "images": [
{ {
"name": "docker", "name": "docker",
"reference": "19.03" "reference": "com.coreos.cl"
} }
] ]
} }

View File

@ -0,0 +1 @@
- The Torcx profile `docker-1.12-no` got fixed to reference the current Docker version instead of 19.03 which wasn't found on the image, causing Torcx to fail to provide Docker [PR#1456](https://github.com/flatcar-linux/coreos-overlay/pull/1456)