-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
33 lines (29 loc) · 914 Bytes
/
.env.example
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
26
27
28
29
30
31
32
33
#############################################
# Environment variables
#############################################
SVC_PORT=9988
#############################################
# PostgreSQL database environment variables
#############################################
DATABASE=postgres
DATABASE_HOST=database
DATABASE_USER=postgres
DATABASE_PASSWORD=postgres
DATABASE_NAME=course_svc_db
DATABASE_PORT=5432
#############################################
# Redis variables
#############################################
REDIS_HOST=redis_server
REDIS_PORT=6379
#############################################
# Minio variables
#############################################
MINIO_URL=storage.localhost
MINIO_BUCKET=course-svc-minio
MINIO_ROOT_USER=minioadmin
MINIO_ROOT_PASSWORD=minioadmin
#############################################
# pgAdmin variables
#############################################
PGADMIN_PORT=15432