I wonder if we have an option to configure docker-compose to ignore errors of one of the containers and continue to start others.
For example, here is my docker-compose.yml
version: '3'
services:
web:
build: .
redis:
image: redis
If redis container fails to start, the web container still start.