From b3c3267627425834e82bc452dc3fb992607427d1 Mon Sep 17 00:00:00 2001 From: Rolf Neugebauer Date: Mon, 11 Dec 2017 14:41:35 +0000 Subject: [PATCH] examples/redis: Explicitly use redis:4.0.5-alpine Currently there is a Content Trust issue with 4.0-alpine as well as 4-alpine on arm64. 4.0.5-alpine works, so use it for the example. Signed-off-by: Rolf Neugebauer --- examples/redis-os.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/redis-os.yml b/examples/redis-os.yml index 6d5b6f928..47ba7188c 100644 --- a/examples/redis-os.yml +++ b/examples/redis-os.yml @@ -16,8 +16,10 @@ services: image: linuxkit/getty:22e27189b6b354e1d5d38fc0536a5af3f2adb79f env: - INSECURE=true + # Currently redis:4.0.6-alpine has trust issue with multi-arch + # https://github.com/docker-library/official-images/issues/3794 - name: redis - image: redis:4.0-alpine + image: redis:4.0.5-alpine capabilities: - CAP_NET_BIND_SERVICE - CAP_CHOWN