Currently docker-compose 1.25 is required. This is because 1.25 is the default version of docker-compose on Ubuntu 20.04, which was the primary environment used for developing the OTOBO The goal is to support Ubuntu 18.04 which ships with docker-compose 1,17,
It looks like the only showstopper is the usage of e.g. MYSQL_ROOT_PASSWORD: ${OTOBO_DB_ROOT_PASSWORD:?err} which should bail out when a variable is not set. Support for ?err was added to docker-compose in version 1.19.
Currently docker-compose 1.25 is required. This is because 1.25 is the default version of docker-compose on Ubuntu 20.04, which was the primary environment used for developing the OTOBO The goal is to support Ubuntu 18.04 which ships with docker-compose 1,17,
It looks like the only showstopper is the usage of e.g.
MYSQL_ROOT_PASSWORD: ${OTOBO_DB_ROOT_PASSWORD:?err}
which should bail out when a variable is not set. Support for?err
was added to docker-compose in version 1.19.TODO:
?err
.