thecodingmachine / deeployer

A tool to ease the creation of environments using docker-compose or Kubernetes
14 stars 2 forks source link

Add support for HTTPS #36

Open moufmouf opened 4 years ago

moufmouf commented 4 years ago

So far, we only support deploying with HTTP.

We should add support for HTTPS deployments. Maybe a new key in the configuration?

{
    "containers": {
      "php_myadmin": {
        "image": "phpmyadmin",
        "ports": [80],
        "host": "myhost.com",
        "https": "enable|disable|force"
      }
    }
  }
moufmouf commented 4 years ago
Kharhamel commented 4 years ago

What does the flag 'force' is supposed to do?