I am quite new to Letsencrypt, and I wanted to selfhost my first website on a raspberry pi. First I wanted to get a hold of a TLS cert. So i exlcuded my nexjts app and only ran the nginx container + certbot This is the code for the docker.compose.yml: services: # nextjs: # container_name: WebApp # build: # context: . # dockerfile: Dockerfile # ports: # - '3000:3000' # privileged: true # image: website:latest # env_file: # - .env.local # restart: always nginx: container_name: nginx-proxy image...