docker-nginx-ssl-proxy icon indicating copy to clipboard operation
docker-nginx-ssl-proxy copied to clipboard

Documentation: fix docker-compose.yml

Open Mugane opened this issue 2 years ago • 0 comments

The documentation should wrap that docker-compose.yml file under services: like so:

services:
  nginx-ssl-proxy:
    image: danieldent/nginx-ssl-proxy
    restart: always
    environment:
      UPSTREAM: 127.0.0.1:8080
      SERVERNAME: test.example.com
      EXTRANAMES: www.test.example.com,test2.example.com
    ports:
      - "80:80"
      - "443:443"
    volumes:
      - "/etc/letsencrypt"

If you don't, you'll get an error such as: (root) Additional property nginx-ssl-proxy is not allowed

Also, docker-compose up is deprecated, now it's docker compose up

Mugane avatar Oct 06 '22 05:10 Mugane