Https for your Apps

Proxies

Traefik

See https://myzopotamia.dev/traefik-reverse-proxy-with-containers

Caddy

NGINX

ℹ️
Thanks to for the video!

Cloudflare Tunnels

How to expose Apps safely, through your domain, with https and without exposing your home public IP.

https://jalcocert.github.io/JAlcocerT/why-i-love-containers/

sudo docker network tunnel
services:
  cloudflared:
    image: cloudflare/cloudflared:latest
    container_name: cloudflared
    command: tunnel --no-autoupdate run --token yourfantastictoken
    networks:
      - tunnel #Cloudflare Network
    restart: always

networks:
  tunnel: #Cloudflare Network
ℹ️
Remember to use the tunnel network on the containers you want to expose!
docker network connect tunnel portainer #your_docker_container_to_expose  #network (tunnel) - service