-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker-compose.yml
33 lines (30 loc) · 1.17 KB
/
docker-compose.yml
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
#------------------------------------------------------------------------------------------------------------------------
#
# docker-compose -f "docker-compose.yml" -f "docker-compose.override.yml" up -d --no-recreate bet.hosting
#
# docker-compose -f "docker-compose.yml" up -d --no-recreate bet.hosting
#------------------------------------------------------------------------------------------------------------------------
version: '3.4'
services:
bet.web:
image: ${DOCKER_REGISTRY-}/bet:web
build:
context: .
dockerfile: src/Bet.AspNetCore.Sample/Dockerfile
args:
RUNTESTS: "false"
VERBOSE: "false"
NUGET_RESTORE: "-v=m" #overides the --disable-parallel
PROJECT_PATH: "/src/Bet.AspNetCore.Sample/Bet.AspNetCore.Sample.csproj"
SOLUTION_BASE: "false"
bet.k8sweb:
image: ${DOCKER_REGISTRY-}/bet:k8sweb
build:
context: .
dockerfile: src/Bet.K8s.Web.Sample/Dockerfile
args:
RUNTESTS: "false"
VERBOSE: "false"
NUGET_RESTORE: "-v=m" #overides the --disable-parallel
PROJECT_PATH: "/src/Bet.K8s.Web.Sample/Bet.K8s.Web.Sample.csproj"
SOLUTION_BASE: "false"