Most docker projects I'm working with have started adopting docker secrets for storing important information such as passwords. For example in the npm docker-compose example: DB_MYSQL_PASSWORD: "npm" With secrets this may translate to something like: DB_MYSQL_PASSWORD_FILE: /var/run/secrets/npm Does this project support this type of notation?