example.env 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Example of environment file for docker-compose
  2. # Copy this file into your own `.env` file
  3. # ================================
  4. # FreshRSS
  5. # ================================
  6. ADMIN_EMAIL=admin@example.net
  7. # Published port for development or local use (optional)
  8. PUBLISHED_PORT=8080
  9. # =========================================
  10. # For automatic FreshRSS install (optional)
  11. # =========================================
  12. ADMIN_PASSWORD=freshrss
  13. ADMIN_API_PASSWORD=freshrss
  14. # Address at which the FreshRSS instance will be reachable:
  15. BASE_URL=https://freshrss.example.net
  16. SERVER_DNS=freshrss.example.net
  17. # Database server (not relevant if using default SQLite)
  18. # Use the name of the Docker container if running on the same machine
  19. DB_HOST=freshrss-db
  20. # ===========================================================
  21. # Database credentials (not relevant if using default SQLite)
  22. # ===========================================================
  23. # Database to use
  24. DB_BASE=freshrss
  25. # User in the freshrss database
  26. DB_USER=freshrss
  27. # Password for the defined user
  28. DB_PASSWORD=freshrss