eugene-khyst / letsencrypt-docker-compose

Set up Nginx and Let’s Encrypt in less than 3 minutes with a Docker Compose project that automatically obtains and renews free Let's Encrypt SSL/TLS certificates and sets up HTTPS in Nginx for multiple domain names. Configuration is done using a simple CLI tool.
Apache License 2.0
473 stars 218 forks source link

fix command for Build images and start containers #20

Closed patsevanton closed 2 years ago

steklopod commented 2 years ago

It's not a bug :-) https://stackoverflow.com/questions/66514436/difference-between-docker-compose-and-docker-compose

eugene-khyst commented 2 years ago

@patsevanton , there is a docker-compose binary (V1) and docker compose "plugin" (V2). At the moment even the official documentation recommends to install V2 https://docs.docker.com/engine/install/ubuntu/:

sudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin

docker-compose-plugin will install docker compose (V2).

But I will extend the README.md to provide more details regarding this case.