Serving images not working

Hi @francislavoie ,

Thank you for your quick reply.
I have edited my previous message and added the backticks so you can see the actual url of the images I was trying to serve.
Regarding the rest of your questions:
Yes. The frontend container is actually Caddy serving the (static) frontend.
Here is the Dockerfile:

FROM caddy:latest
COPY Caddyfile /etc/caddy/Caddyfile
WORKDIR /var/www/html/build
COPY build/ /var/www/html/build/
EXPOSE 80
EXPOSE 443
EXPOSE 5002
CMD ["caddy", "run", "--config", "/etc/caddy/Caddyfile"]

As you can, see I am using the latest image of Caddy.
Finally regarding logs, the only way I know to see Caddy logs is by doing :
docker logs your_container_name
Now because of this issue : Too many certificates created - #2 by Mohammed90
I am now unable to create the Caddy container anymore ( maybe because the limit of SSL certificate has been reached) and cannot see the logs.

Maybe you can guide me and explain to me how to do it?

Thanks a lot :slight_smile: