I have a command to be executed in my docker-compose.yml
with docker-compose up --build -d
:
(...)
command: certonly --webroot -w /var/www/certbot \
-d test.apps.example.com
but I would like to have something like this:
(...)
command: certonly --webroot -w /var/www/certbot \
-d ${arg}.example.com
and: docker-compose up --build -d "test.apps"
Any idea how I can achieve this?