Merge pull request #173 from meysamhadeli/develop

chore: Update flight service
This commit is contained in:
Meysam Hadeli 2023-02-13 00:10:42 +03:30 committed by GitHub
commit 9b703f071f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 19 additions and 26 deletions

View File

@ -283,15 +283,11 @@ services:
- booking - booking
networks: networks:
booking: booking:
name: booking name: booking
volumes: volumes:
db-data:
external: false
elasticsearch-data: elasticsearch-data:

View File

@ -1,9 +1,9 @@
version: "3.3" version: "3.3"
services: services:
####################################################### # #######################################################
# Rabbitmq # # Rabbitmq
####################################################### # #######################################################
rabbitmq: rabbitmq:
container_name: rabbitmq container_name: rabbitmq
image: rabbitmq:3-management image: rabbitmq:3-management
@ -95,7 +95,7 @@ services:
####################################################### #######################################################
elasticsearch: elasticsearch:
container_name: elasticsearch container_name: elasticsearch
image: docker.elastic.co/elasticsearch/elasticsearch:7.9.2 image: docker.elastic.co/elasticsearch/elasticsearch:7.17.9
restart: unless-stopped restart: unless-stopped
ports: ports:
- 9200:9200 - 9200:9200
@ -114,7 +114,7 @@ services:
####################################################### #######################################################
kibana: kibana:
container_name: kibana container_name: kibana
image: docker.elastic.co/kibana/kibana:7.9.2 image: docker.elastic.co/kibana/kibana:7.17.9
restart: unless-stopped restart: unless-stopped
ports: ports:
- 5601:5601 - 5601:5601
@ -145,8 +145,6 @@ networks:
volumes: volumes:
db-data:
external: false
elasticsearch-data: elasticsearch-data:

View File

@ -21,7 +21,6 @@ var app = builder.Build();
app.MapMinimalEndpoints(); app.MapMinimalEndpoints();
app.UseAuthentication(); app.UseAuthentication();
app.UseAuthorization(); app.UseAuthorization();
app.UseHttpsRedirection();
app.UseInfrastructure(); app.UseInfrastructure();
app.Run(); app.Run();

View File

@ -16,7 +16,7 @@
"dotnetRunMessages": true, "dotnetRunMessages": true,
"launchBrowser": true, "launchBrowser": true,
"launchUrl": "swagger", "launchUrl": "swagger",
"applicationUrl": "https://localhost:5003;http://localhost:5004", "applicationUrl": "https://localhost:5003",
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }