mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-22 12:41:05 +01:00
8 lines
296 B
Plaintext
8 lines
296 B
Plaintext
|
# This template needs to be included in docker-compose.yml contaienrs, which depend on a database, redis and optional additional volumes
|
||
|
depends_on:
|
||
|
{% if enable_central_database %}
|
||
|
database:
|
||
|
condition: service_healthy
|
||
|
{% endif %}
|
||
|
redis:
|
||
|
condition: service_healthy
|