We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The documentation should wrap that docker-compose.yml file under services: like so:
services:
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
docker-compose up
docker compose up
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The documentation should wrap that docker-compose.yml file under
services:
like so: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'sdocker compose up
The text was updated successfully, but these errors were encountered: