Skip to content

Commit 3655516

Browse files
Merge branch 'hotfix/KeepDockerEnv'
2 parents 8c06975 + b4c88c6 commit 3655516

File tree

5 files changed

+40
-0
lines changed

5 files changed

+40
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -489,3 +489,4 @@ src/Api/appsettings.Development.json
489489
src/Api/appsettings.Testing-Development.json
490490
#src/Api/appsettings.Testing-Deployment.json
491491
src/Api/appsettings.json
492+
!Dockers/*/.env

Dockers/ElasticSearch/.env

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Password for the 'elastic' user (at least 6 characters)
2+
ELASTIC_PASSWORD=Admin@123
3+
4+
# Password for the 'kibana_system' user (at least 6 characters)
5+
KIBANA_PASSWORD=Admin@456
6+
7+
# Version of Elastic products
8+
STACK_VERSION=8.17.1
9+
10+
# Set the cluster name
11+
CLUSTER_NAME=docker-cluster
12+
13+
# Set to 'basic' or 'trial' to automatically start the 30-day trial
14+
LICENSE=basic
15+
#LICENSE=trial
16+
17+
# Port to expose Elasticsearch HTTP API to the host
18+
ES_PORT=9200
19+
#ES_PORT=127.0.0.1:9200
20+
21+
# Port to expose Kibana to the host
22+
KIBANA_PORT=5601
23+
#KIBANA_PORT=80
24+
25+
# Increase or decrease based on the available host memory (in bytes)
26+
MEM_LIMIT=1073741824
27+
28+
# Project namespace (defaults to the current folder name if not set)
29+
#COMPOSE_PROJECT_NAME=myproject

Dockers/MinioS3/.env

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
MINIO_ROOT_USER=the_template_storage
2+
MINIO_ROOT_PASSWORD=storage@the_template1
3+
MINIO_ACCESS_KEY=storage4thetemplate
4+
MINIO_SECRET_KEY=f101szmf0d0czks0cy8sa95zyjfon1mz

Dockers/Postgresql/.env

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
POSTGRES_USER=theusername
2+
POSTGRES_PASSWORD=123456
3+
POSTGRES_DB=postgres
4+
PGADMIN_DEFAULT_PASSWORD=postgres123
5+
PGADMIN_DEFAULT_EMAIL=lovingsocialmedia1@gmail.com

Dockers/Redis/.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
REDIS_PASSWORD=123456

0 commit comments

Comments
 (0)