From 624a17b9fc1dfb1a528a199f2e6dea25aba069cc Mon Sep 17 00:00:00 2001 From: Mark Date: Wed, 24 Nov 2021 03:30:51 -0500 Subject: [PATCH] Add depends_on for nginx so it waits until the limesurvey app is ready (#102) By adding a depends_on in lime-web, it will wait for the limesurvey app to be ready to accept connections. --- docker-compose.fpm.alpine.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.fpm.alpine.yml b/docker-compose.fpm.alpine.yml index 555be17..26ac6ce 100644 --- a/docker-compose.fpm.alpine.yml +++ b/docker-compose.fpm.alpine.yml @@ -20,6 +20,8 @@ services: image: nginx:alpine links: - limesurvey + depends_on: + - limesurvey ports: - "8080:80" volumes: