-
-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy path.env.example
More file actions
23 lines (18 loc) · 804 Bytes
/
Copy path.env.example
File metadata and controls
23 lines (18 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copy this file to `.env` and fill in the values that match your setup.
# Docker Compose files under deployment/ read these variables to keep settings in one place.
#
# IMPORTANT:
# 1. This file must be named exactly ".env" (not .env.txt or .env.example)
# 2. It must be in the SAME directory as your docker-compose-*.yaml file
# 3. Do NOT use spaces around the = sign
# 4. Do NOT use quotes around values (unless required by the value itself)
# 5. After editing, restart containers: docker-compose down && docker-compose up -d
# SET YOUR TIMEZONE
TZ=UTC
# CHANGE DEFAULT USER AND PASSWORD FOR SECURITY REASONS
POSTGRES_USER=audiomuse
POSTGRES_PASSWORD=audiomusepassword
# CHANGE THESE ONLY IF THE DEFAULT PORTS ARE ALREADY IN USE ON YOUR HOST
POSTGRES_PORT=5432
REDIS_PORT=6379
FRONTEND_PORT=8000