-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.debug.yml
More file actions
36 lines (35 loc) · 999 Bytes
/
docker-compose.debug.yml
File metadata and controls
36 lines (35 loc) · 999 Bytes
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
version: '3.1'
services:
ntachyon.web:
container_name: ntachyon.web
image: ntachyon.web:latest
build:
context: ./src/NTachyon.Web
dockerfile: Dockerfile
restart: always
links:
- ntachyon.api
volumes:
- ./src/NTachyon.Web/bin/Debug/netcoreapp2.2/publish/:/app
- ~/.nuget/packages:/root/.nuget/packages:ro
- ~/.microsoft/usersecrets:/root/.microsoft/usersecrets
environment:
- ASPNETCORE_URLS=http://+:5000
ports:
- 5000:5000
ntachyon.api:
container_name: ntachyon.api
image: ntachyon.api:latest
build:
context: ./src/NTachyon.Api
dockerfile: Dockerfile
restart: always
volumes:
- ./src/NTachyon.Api/bin/Debug/netcoreapp2.2/publish/:/app
- ~/.nuget/packages:/root/.nuget/packages:ro
- ~/.microsoft/usersecrets:/root/.microsoft/usersecrets
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:5001
ports:
- 5001:5001