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
When running the compose up -d {service} command to try this out for the first time, this is what I saw:
compose up -d {service}
nginx_1 | ********** STARTING NGINX HTTPS/AUTH PROXY ********** nginx_1 | nginx_1 | nginx_1 | /www/entrypoint.sh: line 21: sudo: command not found
Here is my dumbed-down compose file:
version: "3" services: nginx: image: justsml/ssl-proxy:latest ports: - "443:443" restart: unless-stopped volumes: - ./configs/nginx/certs:/certs environment: - HTTPS_PORT=443 - SERVER_NAME=servicename.127.0.0.1.xip.io - UPSTREAM_TARGET=upstream.127.0.0.1.xip.io:4433 - CERT_AUTO=true - CERT_PUBLIC_PATH=/certs/fullchain.pem - CERT_PRIVATE_PATH=/certs/privkey.pem depends_on: - servicename
It looks like perhaps sudo just needs to be removed from that script?
sudo
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When running the
compose up -d {service}
command to try this out for the first time, this is what I saw:Here is my dumbed-down compose file:
It looks like perhaps
sudo
just needs to be removed from that script?The text was updated successfully, but these errors were encountered: