From f2172462bb233ff68c5eb79c26bcc3a477b7c709 Mon Sep 17 00:00:00 2001 From: Alex Ellis Date: Thu, 13 Apr 2017 11:59:48 +0100 Subject: [PATCH] Move to healthcheck-backed image for base images --- docker-compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index dbd71a9b..f7b12cc0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -94,7 +94,7 @@ services: # Uses `cat` to echo back response, fastest function to execute. echoit: - image: functions/alpine:latest + image: functions/alpine:health labels: function: "true" depends_on: @@ -108,7 +108,7 @@ services: # Counts words in request with `wc` utility wordcount: - image: functions/alpine:latest + image: functions/alpine:health labels: function: "true" com.faas.max_replicas: "10" @@ -123,7 +123,7 @@ services: # Calculates base64 representation of request body. base64: - image: functions/alpine:latest + image: functions/alpine:health labels: function: "true" depends_on: @@ -137,7 +137,7 @@ services: # Decodes base64 representation of request body. decodebase64: - image: functions/alpine:latest + image: functions/alpine:health labels: function: "true" depends_on: