-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
executable file
·43 lines (42 loc) · 1.03 KB
/
docker-compose.yml
File metadata and controls
executable file
·43 lines (42 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
version: '3'
services:
dotnet31:
restart: always
environment:
- ASPNETCORE_ENVIRONMENT=Production
- AppMerch_GatewayConfig__SecretKey=secreaqui
- AppMerch_GatewayConfig__Url=https://urlaqui
build:
context: ./
dockerfile: Dockerfile
container_name: dotnet31
#command: bash -c "cp -avr . /builddotnet && cd /builddotnet && dotnet restore --force && dotnet publish MerchantIntegration.Api/MerchantIntegration.Api.csproj -o /app/out && cd /app/out && dotnet MerchantIntegration.Api.dll"
tty: true
volumes:
- ./:/app
ports:
- "5000:5000"
- "5001:5001"
depends_on:
- mongo
networks:
- monitoramento-network
mongo:
container_name: mongodev1
image: mongo
ports:
- 27017:27017
networks:
- monitoramento-network
seqteste:
image: datalust/seq:latest
environment:
ACCEPT_EULA: "Y"
ports:
- "655:80"
- "5341:5341"
networks:
- monitoramento-network
networks:
monitoramento-network:
driver: bridge