Commit 43d4992c authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Omite multilínea en check de salud

parent 4094a25c
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -26,9 +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