We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9797c2 commit 36687d9Copy full SHA for 36687d9
wordpress-official-starter/compose.yml
@@ -27,6 +27,11 @@ services:
27
- ./wordpress.conf:/etc/apache2/sites-enabled/wordpress.conf:ro
28
networks:
29
- gcb-mariadb-wordpress-network
30
+ healthcheck:
31
+ test: curl --fail --silent -k http://gcb-wordpress
32
+ interval: "1h" # effectively turns repeated healthchecks during runtime off
33
+ start_period: "60s"
34
+ start_interval: "1s"
35
36
37
gcb-mariadb-wordpress-network:
wordpress-official-starter/usage_scenario.yml
@@ -9,6 +9,9 @@ services:
9
image: greencoding/gcb_playwright:v16
10
11
12
+ depends_on:
13
+ gcb-wordpress:
14
+ condition: service_healthy
15
16
flow:
17
- name: Check Website
0 commit comments