4
0

example.env 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. # Database server (not relevant if using default SQLite)
  17. # Use the name of the Docker container if running on the same machine
  18. DB_HOST=freshrss-db
  19. # ===========================================================
  20. # Database credentials (not relevant if using default SQLite)
  21. # ===========================================================
  22. # Database to use
  23. DB_BASE=freshrss
  24. # User in the freshrss database
  25. DB_USER=freshrss
  26. # Password for the defined user
  27. DB_PASSWORD=freshrss