diff --git a/.env.example b/.env.example index c46d0aa..24aa0cc 100644 --- a/.env.example +++ b/.env.example @@ -1,5 +1,5 @@ # SMTP settings (Mailcow) -SMTP_HOST=mx.jeffemmett.com +SMTP_HOST=mail.rmail.online SMTP_PORT=587 SMTP_USER=noreply@jefflix.lol SMTP_PASS=your-mailbox-password diff --git a/docker-compose.yml b/docker-compose.yml index 7bdcc70..21845d3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,8 +2,15 @@ services: jefflix: build: . restart: unless-stopped + read_only: true + tmpfs: + - /tmp + cap_drop: + - ALL + security_opt: + - no-new-privileges:true environment: - - SMTP_HOST=${SMTP_HOST:-mx.jeffemmett.com} + - SMTP_HOST=${SMTP_HOST:-mail.rmail.online} - SMTP_PORT=${SMTP_PORT:-587} - SMTP_USER=${SMTP_USER} - SMTP_PASS=${SMTP_PASS}