From 33346c9f7a7033f93f484a431a8a26648af46305 Mon Sep 17 00:00:00 2001 From: Umputun Date: Thu, 15 Apr 2021 03:33:52 -0500 Subject: [PATCH] update docker example with arm-compat images #33 --- examples/docker/docker-compose.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/examples/docker/docker-compose.yml b/examples/docker/docker-compose.yml index 01b3097..6549ffe 100644 --- a/examples/docker/docker-compose.yml +++ b/examples/docker/docker-compose.yml @@ -18,17 +18,18 @@ services: # automatic destination, will be mapped for ^/api/svc1/(.*) svc1: - image: hashicorp/http-echo + image: ghcr.io/umputun/echo-http hostname: svc1 container_name: svc1 - command: -text="hello world from svc1" + command: --message="hello world from svc1" + # automatic destination, will be mapped for ^/api/svc2/(.*) svc2: - image: hashicorp/http-echo + image: ghcr.io/umputun/echo-http hostname: svc2 container_name: svc2 - command: -text="hello world from svc2" + command: --message="hello world from svc2" # explicit destination, routing match defined by lables whoami: