You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
36 lines
1.2 KiB
version: '3.7'
|
|
|
|
services:
|
|
administration-service:
|
|
image: eshoponabp/service-administration:latest
|
|
container_name: administration-service-container
|
|
build:
|
|
context: ../../
|
|
dockerfile: services/administration/src/EShopOnAbp.AdministrationService.HttpApi.Host/Dockerfile
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Development
|
|
- ASPNETCORE_URLS=https://+:443;http://+:80
|
|
- Kestrel__Certificates__Default__Path=/root/certificate/localhost.pfx
|
|
- Kestrel__Certificates__Default__Password=8b6039b6-c67a-448b-977b-0ce6d3fcfd49
|
|
- Redis__Configuration=redis
|
|
- RabbitMQ__Connections__Default__HostName=rabbitmq
|
|
- RabbitMQ__Connections__Default__Port=5672
|
|
- ConnectionStrings__AdministrationService=User ID=postgres;Password=myPassw0rd;Host=postgres-db;Port=5432;Database=EShopOnAbp_Administration;Pooling=false;
|
|
ports:
|
|
- "44353:443"
|
|
depends_on:
|
|
redis:
|
|
condition: service_healthy
|
|
postgres-db:
|
|
condition: service_healthy
|
|
rabbitmq:
|
|
condition: service_healthy
|
|
restart: on-failure
|
|
networks:
|
|
- eshoponabp-network
|
|
volumes:
|
|
- ../dev-cert:/root/certificate
|
|
|
|
networks:
|
|
eshoponabp-network:
|
|
external: true
|