-
Notifications
You must be signed in to change notification settings - Fork 3k
Troubleshooting
Sudarshan Wadkar edited this page Oct 26, 2018
·
3 revisions
Let's say the nginx-proxy container name is nginxproxy
.
docker version
docker-compose version # if you are using docker-compose
docker images --format "{{.ID}}\t{{.Repository}}:{{.Tag}}" jwilder/nginx-proxy
docker logs nginxproxy
docker exec nginxproxy cat /etc/nginx/conf.d/default.conf
docker exec nginxproxy nginx -s reload
This will eventually provide an useful error message that is not provided in the container log.
Make sure that you don't use quotes while declaring variables in docker-compose.yml
. See this issue if you are getting errors while parsing the generated nginx configuration file.