-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.app.yaml
More file actions
28 lines (28 loc) · 1.03 KB
/
docker-compose.app.yaml
File metadata and controls
28 lines (28 loc) · 1.03 KB
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
services:
app:
depends_on:
- rabbitmq
build:
context: ./src/EventSourcedPM
dockerfile: eventsourced-pm.Dockerfile
environment:
- EventSourcedPM__ApiBaseUrl=http://*:43210
- EventSourcedPM__EventStoreAdapter=KurrentDB
- EventSourcedPM__MessageBusAdapter=MassTransit
- EventSourcedPM__EventStore__Endpoint__Host=eventstore
- EventSourcedPM__EventStore__Username=admin
- EventSourcedPM__EventStore__Password=changeit
- EventSourcedPM__Postgres__Endpoint__Host=postgres
- EventSourcedPM__Postgres__Username=admin
- EventSourcedPM__Postgres__Password=changeit
- EventSourcedPM__Postgres__Database=espm
- EventSourcedPM__RabbitMq__Endpoint__Host=rabbitmq
- EventSourcedPM__RabbitMq__Username=admin
- EventSourcedPM__RabbitMq__Password=changeit
- EventSourcedPM__RabbitMq__VHost=espm
- EventSourcedPM__WaitForInfrastructureOnStartup=true
- EventSourcedPM__Logging__Level=Error
ports:
- 43210:43210
networks:
- devnet