This website works better with JavaScript.
Home
Explore
Help
Sign In
ayan.poddar
/
eShopOnContainers
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
19
Wiki
Activity
Browse Source
Rename grace period service in docker-compose files
pull/809/head
Ramón Tomás
7 years ago
parent
565be77825
commit
e8dbf0c160
6 changed files
with
10 additions
and
10 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
docker-compose.override.yml
+3
-3
docker-compose.vs.debug.yml
+1
-1
docker-compose.vs.release.yml
+3
-3
docker-compose.yml
+1
-1
eShopOnContainers-ServicesAndWebApps.sln
+1
-1
src/Services/GracePeriod/GracePeriodManager/Dockerfile
+ 1
- 1
docker-compose.override.yml
View File
@ -7,7 +7,7 @@ version: '2'
# An external IP or DNS name has to be used (instead localhost and the 10.0.75.1 IP) when testing the Web apps and the Xamarin apps from remote machines/devices using the same WiFi, for instance.
services:
sa
gamanager:
g
r
a
ceperiod
manager:
environment:
-
ConnectionString=Server=sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word
-
EventBusConnection=rabbitmq
+ 3
- 3
docker-compose.vs.debug.yml
View File
@ -121,13 +121,13 @@ services:
labels:
-
"com.microsoft.visualstudio.targetoperatingsystem=linux"
sa
gamanager:
image
:
eshop/
sa
gamanager:dev
g
r
a
ceperiod
manager:
image
:
eshop/g
r
a
ceperiod
manager:dev
build:
args:
source
:
${DOCKER_BUILD_SOURCE}
volumes:
-
./src/Services/
SagaManager/Saga
Manager:/app
-
./src/Services/
GracePeriod/GracePeriod
Manager:/app
-
~/.nuget/packages:/root/.nuget/packages:ro
-
~/clrdbg:/clrdbg:ro
entrypoint
:
tail -f /dev/null
+ 1
- 1
docker-compose.vs.release.yml
View File
@ -81,7 +81,7 @@ services:
labels:
-
"com.microsoft.visualstudio.targetoperatingsystem=linux"
sa
gamanager:
g
r
a
ceperiod
manager:
build:
args:
source
:
${DOCKER_BUILD_SOURCE}
+ 3
- 3
docker-compose.yml
View File
@ -2,10 +2,10 @@ version: '2'
services:
sa
gamanager:
image
:
eshop/
sa
gamanager
g
r
a
ceperiod
manager:
image
:
eshop/g
r
a
ceperiod
manager
build:
context
:
./src/Services/
SagaManager/Saga
Manager
context
:
./src/Services/
GracePeriod/GracePeriod
Manager
dockerfile
:
Dockerfile
depends_on:
-
sql.data
+ 1
- 1
eShopOnContainers-ServicesAndWebApps.sln
View File
@ -82,7 +82,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventBus.Tests", "src\Build
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "GracePeriod", "GracePeriod", "{F38B4FF0-0B49-405A-B1B4-F7A5E3BC4C4E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GracePeriodManager", "src\Services\
SagaManager\Saga
Manager\GracePeriodManager.csproj", "{F6E0F0DD-1400-43C3-B5E0-7CC325728C47}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GracePeriodManager", "src\Services\
GracePeriod\GracePeriod
Manager\GracePeriodManager.csproj", "{F6E0F0DD-1400-43C3-B5E0-7CC325728C47}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ 1
- 1
src/Services/GracePeriod/GracePeriodManager/Dockerfile
View File
@ -2,4 +2,4 @@ FROM microsoft/dotnet:1.1-runtime
ARG
source
WORKDIR
/app
COPY
${
source
:-
obj
/Docker/publish
}
.
ENTRYPOINT
[
"dotnet"
,
"
Saga
Manager.dll"
]
ENTRYPOINT
[
"dotnet"
,
"
GracePeriod
Manager.dll"
]
Write
Preview
Loading…
Cancel
Save