blob: 2b7a466181278960ed8be2f656da195bbe70308e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Environment file for docker-compose
# In this file you need to define the different settings
# ====================================
# Database
# ====================================
# Database to use for freshrss
POSTGRES_DB=freshrss
# User in the freshrss database
POSTGRES_USER=freshrss
# Password for the defined user
POSTGRES_PASSWORD=freshrss
# ====================================
# FreshRSS
# ====================================
# Exposed port for the docker-container
EXPOSED_PORT=8080
|