Commit f88008cf authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Corrige check de salud, paréntesis faltantes

parent 43d4992c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ services:
      - source: cert-privkey
        target: /etc/nginx/certs/privkey.pem
    healthcheck:
      test: wget --spider -S -t 3 http://${PUBLIC_HOSTNAME:-localhost} || count=$$(ps aux | grep openssl | wc -l); [ $${count} -gt 1 ]
      test: wget --spider -S -t 3 http://${PUBLIC_HOSTNAME:-localhost} || (count=$$(ps aux | grep openssl | wc -l); [ $${count} -gt 1 ])
      interval: 30s
      timeout: 10s
      retries: 3