#!/usr/bin/env bash
echo -e "\033[36mTODO\033[39m: Implement this command"

CONFIG='run/docker-compose.yml'

docker-compose -f ${CONFIG} run --rm app \
    -k /path/to/account.key \
    --domain-private-key /path/to/domain.key \
    --virtual-host /etc/nginx/sites-enabled/customvhost \
    -o /path/to/signed_certificate.pem \
    -d example.com -d www.example.com
