Advertisement
crowley69

Notesnook docker

Apr 2nd, 2025 (edited)
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. I made a few changes to your docker compose and the .env file, some major, some minor:
  2. Note: the main issue was that you need a domain name and a reverse proxy for this to work
  3.  
  4. docker-compose.yml Changes:
  5. 1. Changed the mongodb image: mongo:8.0-noble
  6. 2. Changed mongosh mongodb://notesnook-db:27017 used the container name instead of localhost, localhost should work fine, but I prefer using the container name
  7. 3. Added some extra environments for the minio container to not give you any issues with images/attachments
  8. 4. Edited the minio command, including a connection to the API
  9. 5. Changed the S3_INTERNAL_SERVICE_URL: "https://notesnook-s3.example.com" to the FQDN (attachments will work now with no issues)
  10. 6. Changed the MONGODB_CONNECTION_STRING to use container name instead of localhost
  11.  
  12. .env file Changes:
  13. 1. Used SMTP_PORT=587 as the SSL port 465 doesn't work in my testing, instead I used the STARTTLS port 587
  14. 2. Changed all the public URLs to subdomains
  15. 3. If you are using the official notesnook app, you need to set NOTESNOOK_APP_PUBLIC_URL=https://app.notesnook.com
  16.  
  17. Importnant notes:
  18.  
  19. You need a fully qualified domain name and a reverse proxy to be able to use the notesnook app, check the list:
  20. Note: I use nginx proxy manager (NPM) as it is very friendly and has a GUI and you can find many YouTube tutorials out there, it also comes with certbot for the letsencrypt SSL certs, but any reverse proxy should work.
  21.  
  22. Sync server: ServerIP:5264 > notesnook.example.com # This one have no environment variable
  23. Auth server: ServerIP:8264 > notesnook-auth.example.com
  24. Events (sse) server: ServerIP:7264 > notesnook-events.example.com # This one have no environment variable
  25. Monograph server: ServerIP:6264 > notesnook-monograph.example.com
  26. Minio/s3 server: ServerIP:9000 > notesnook-s3.example.com
  27.  
  28.  
  29. Set those in the .env
  30. MONOGRAPH_PUBLIC_URL=https://notesnook-monograph.example.com
  31. AUTH_SERVER_PUBLIC_URL=https://notesnook-auth.example.com
  32. ATTACHMENTS_SERVER_PUBLIC_URL=https://notesnook-s3.example.com
  33.  
  34. Set this in the docker-compose.yml:
  35. S3_INTERNAL_SERVICE_URL: "https://notesnook-s3.example.com"
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement