|
|
|
@ -20,8 +20,33 @@ services: |
|
|
|
ports: |
|
|
|
- 6379:6379 |
|
|
|
|
|
|
|
elasticsearch: |
|
|
|
volumes: |
|
|
|
- ./elk/elasticsearch/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml:ro |
|
|
|
environment: |
|
|
|
- "ES_JAVA_OPTS=-Xms512m -Xmx512m" |
|
|
|
ports: |
|
|
|
- 9200:9200 |
|
|
|
|
|
|
|
logstash: |
|
|
|
volumes: |
|
|
|
- ./elk/logstash/config/logstash.yml:/usr/share/logstash/config/logstash.yml:ro |
|
|
|
- ./elk/logstash/pipeline:/usr/share/logstash/pipeline:ro |
|
|
|
environment: |
|
|
|
- "LS_JAVA_OPTS=-Xmx256m -Xms256m" |
|
|
|
ports: |
|
|
|
- 9600:9600 |
|
|
|
- 5000:5000 |
|
|
|
|
|
|
|
kibana: |
|
|
|
volumes: |
|
|
|
- ./elk/kibana/config/:/usr/share/kibana/config:ro |
|
|
|
ports: |
|
|
|
- 5601:5601 |
|
|
|
|
|
|
|
internal-gateway: |
|
|
|
environment: |
|
|
|
- ElasticSearch__Url=http://elasticsearch:9200 |
|
|
|
- ASPNETCORE_ENVIRONMENT=Development |
|
|
|
- ASPNETCORE_URLS=http://0.0.0.0:80 |
|
|
|
- AuthServer__Authority=http://auth-server:64999 |
|
|
|
@ -39,6 +64,7 @@ services: |
|
|
|
|
|
|
|
backend-admin-app-gateway: |
|
|
|
environment: |
|
|
|
- ElasticSearch__Url=http://elasticsearch:9200 |
|
|
|
- ASPNETCORE_ENVIRONMENT=Development |
|
|
|
- ASPNETCORE_URLS=http://0.0.0.0:80 |
|
|
|
- RemoteServices__Default__BaseUrl=http://backend-admin-app-gateway/ |
|
|
|
@ -55,6 +81,7 @@ services: |
|
|
|
|
|
|
|
public-website-gateway: |
|
|
|
environment: |
|
|
|
- ElasticSearch__Url=http://elasticsearch:9200 |
|
|
|
- ASPNETCORE_ENVIRONMENT=Development |
|
|
|
- ASPNETCORE_URLS=http://0.0.0.0:80 |
|
|
|
- AuthServer__Authority=http://auth-server:64999 |
|
|
|
@ -70,6 +97,7 @@ services: |
|
|
|
|
|
|
|
blogging-service: |
|
|
|
environment: |
|
|
|
- ElasticSearch__Url=http://elasticsearch:9200 |
|
|
|
- ASPNETCORE_ENVIRONMENT=Development |
|
|
|
- ASPNETCORE_URLS=http://0.0.0.0:80 |
|
|
|
- AuthServer__Authority=http://auth-server:64999 |
|
|
|
@ -82,6 +110,7 @@ services: |
|
|
|
|
|
|
|
identity-service: |
|
|
|
environment: |
|
|
|
- ElasticSearch__Url=http://elasticsearch:9200 |
|
|
|
- ASPNETCORE_ENVIRONMENT=Development |
|
|
|
- ASPNETCORE_URLS=http://0.0.0.0:80 |
|
|
|
- AuthServer__Authority=http://auth-server:64999 |
|
|
|
@ -93,6 +122,7 @@ services: |
|
|
|
|
|
|
|
product-service: |
|
|
|
environment: |
|
|
|
- ElasticSearch__Url=http://elasticsearch:9200 |
|
|
|
- ASPNETCORE_ENVIRONMENT=Development |
|
|
|
- ASPNETCORE_URLS=http://0.0.0.0:80 |
|
|
|
- AuthServer__Authority=http://auth-server:64999 |
|
|
|
@ -105,6 +135,7 @@ services: |
|
|
|
|
|
|
|
auth-server: |
|
|
|
environment: |
|
|
|
- ElasticSearch__Url=http://elasticsearch:9200 |
|
|
|
- ASPNETCORE_ENVIRONMENT=Development |
|
|
|
- ASPNETCORE_URLS=http://0.0.0.0:64999 |
|
|
|
- ConnectionStrings__Default=Server=sqlserver;Database=MsDemo_Identity;Trusted_Connection=True;MultipleActiveResultSets=true;User=sa;Password=yourStrong(!)Password;Integrated Security=false |
|
|
|
@ -115,6 +146,7 @@ services: |
|
|
|
|
|
|
|
backend-admin-app: |
|
|
|
environment: |
|
|
|
- ElasticSearch__Url=http://elasticsearch:9200 |
|
|
|
- ASPNETCORE_ENVIRONMENT=Development |
|
|
|
- ASPNETCORE_URLS=http://0.0.0.0:80 |
|
|
|
- AuthServer__Authority=http://auth-server:64999 |
|
|
|
@ -125,6 +157,7 @@ services: |
|
|
|
|
|
|
|
console-client-demo: |
|
|
|
environment: |
|
|
|
- ElasticSearch__Url=http://elasticsearch:9200 |
|
|
|
- ASPNETCORE_ENVIRONMENT=Development |
|
|
|
- ASPNETCORE_URLS=http://0.0.0.0:80 |
|
|
|
- RemoteServices__Default__BaseUrl=http://internal-gateway/ |
|
|
|
@ -134,6 +167,7 @@ services: |
|
|
|
|
|
|
|
public-website: |
|
|
|
environment: |
|
|
|
- ElasticSearch__Url=http://elasticsearch:9200 |
|
|
|
- ASPNETCORE_ENVIRONMENT=Development |
|
|
|
- ASPNETCORE_URLS=http://0.0.0.0:80 |
|
|
|
- AuthServer__Authority=http://auth-server:64999 |
|
|
|
|