updated compose file to fix depends_on w/ burnettk
This commit is contained in:
parent
27ea21b81a
commit
54c27d8f0a
|
@ -1,10 +1,12 @@
|
||||||
|
# version: "3.8"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
spiffworkflow-frontend:
|
spiffworkflow-frontend:
|
||||||
container_name: spiffworkflow-frontend
|
container_name: spiffworkflow-frontend
|
||||||
image: ghcr.io/sartography/spiffworkflow-frontend:latest
|
image: ghcr.io/sartography/spiffworkflow-frontend:latest
|
||||||
depends_on:
|
depends_on:
|
||||||
spiffworkflow-backend:
|
spiffworkflow-backend:
|
||||||
condition: service_healthy
|
condition: service_started
|
||||||
environment:
|
environment:
|
||||||
APPLICATION_ROOT: "/"
|
APPLICATION_ROOT: "/"
|
||||||
PORT0: "${SPIFFWORKFLOW_FRONTEND_PORT:-8001}"
|
PORT0: "${SPIFFWORKFLOW_FRONTEND_PORT:-8001}"
|
||||||
|
@ -63,7 +65,6 @@ services:
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 20
|
retries: 20
|
||||||
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
spiffworkflow_backend_db:
|
spiffworkflow_backend_db:
|
||||||
driver: local
|
driver: local
|
||||||
|
|
Loading…
Reference in New Issue