From cf1ce91abdd2369de5e62a1bb0df3540fd0a07b7 Mon Sep 17 00:00:00 2001 From: Janos Dobronszki Date: Thu, 10 Jun 2021 14:24:26 +0100 Subject: [PATCH] Fix db service name (#149) --- db/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/main.go b/db/main.go index f52ca6c..124147d 100644 --- a/db/main.go +++ b/db/main.go @@ -20,7 +20,7 @@ var dbAddress = "postgresql://postgres:postgres@localhost:5432/db?sslmode=disabl func main() { // Create service srv := service.New( - service.Name("db1"), + service.Name("db"), service.Version("latest"), )