Caddy not forwarding proxy Caddy not forwarding proxy docker docker

Caddy not forwarding proxy


If you're using docker run:

Use --network to connect containers:

docker run --rm --network app django    docker run --rm --network app mycaddydockerimage    

If you're using docker-compose:

Use --links:

version: '2.1'services:  django:    image: django  mycaddydockerimage:    image: something    links:    - django