Commit 2a1bb085 authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Escapa caracter '$' en check de salud

parent a8271fc9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -103,7 +103,7 @@ services:
    logging:
      driver: json-file
    healthcheck:
      test: "[ $(curl --silent localhost:${PORT}/_cat/health?h=status) = 'green' ]"
      test: "[ $$(curl --silent localhost:${PORT}/_cat/health?h=status) = 'green' ]"
      interval: 30s
      timeout: 1m
      retries: 20
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ services:
    logging:
      driver: json-file
    healthcheck:
      test: "[ $(curl --silent localhost:${PORT}/_cat/health?h=status) = 'green' ]"
      test: "[ $$(curl --silent localhost:${PORT}/_cat/health?h=status) = 'green' ]"
      interval: 30s
      timeout: 1m
      retries: 20
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ services:
    logging:
      driver: json-file
    healthcheck:
      test: "[ $(curl --silent localhost:${PORT}/_cat/health?h=status) = 'green' ]"
      test: "[ $$(curl --silent localhost:${PORT}/_cat/health?h=status) = 'green' ]"
      interval: 30s
      timeout: 1m
      retries: 20