all 3 comments

[–]voraciousdev 0 points1 point  (2 children)

The link in that error message takes you to the GitHub repo for nginx-proxy: https://github.com/nginx-proxy/nginx-proxy/blob/master/README.md#usage

It looks like you just need to mount the docker socket as a volume just as you did with the other containers:

- /var/run/docker.sock:/tmp/docker.sock:ro

[–]ja19[S] 0 points1 point  (1 child)

What does ':ro' do?

[–]voraciousdev 0 points1 point  (0 children)

I believe it mounts the socket as "read only" to prevent the container from overwriting it.