Hi, just curious
-
Did you have any reasons not to use Debian Stretch or Ubuntu bionic (18 LTS) for MongoDB 4?
-
In Dockerfile you sometimes use
set -ex \
command1; \
command2; \
and sometimes
set -x \
command1 &&
command2
what's the benefit of one over other if applicable?