Skip to content

Commit 51c25c9

Browse files
committed
Rename grace period service in docker-compose files
1 parent b8f8fe5 commit 51c25c9

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

docker-compose.override.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ version: '2'
77
# 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.
88

99
services:
10-
sagamanager:
10+
graceperiodmanager:
1111
environment:
1212
- ConnectionString=Server=sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word
1313
- EventBusConnection=rabbitmq

docker-compose.vs.debug.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,13 +121,13 @@ services:
121121
labels:
122122
- "com.microsoft.visualstudio.targetoperatingsystem=linux"
123123

124-
sagamanager:
125-
image: eshop/sagamanager:dev
124+
graceperiodmanager:
125+
image: eshop/graceperiodmanager:dev
126126
build:
127127
args:
128128
source: ${DOCKER_BUILD_SOURCE}
129129
volumes:
130-
- ./src/Services/SagaManager/SagaManager:/app
130+
- ./src/Services/GracePeriod/GracePeriodManager:/app
131131
- ~/.nuget/packages:/root/.nuget/packages:ro
132132
- ~/clrdbg:/clrdbg:ro
133133
entrypoint: tail -f /dev/null

docker-compose.vs.release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ services:
8181
labels:
8282
- "com.microsoft.visualstudio.targetoperatingsystem=linux"
8383

84-
sagamanager:
84+
graceperiodmanager:
8585
build:
8686
args:
8787
source: ${DOCKER_BUILD_SOURCE}

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ version: '2'
22

33

44
services:
5-
sagamanager:
6-
image: eshop/sagamanager
5+
graceperiodmanager:
6+
image: eshop/graceperiodmanager
77
build:
8-
context: ./src/Services/SagaManager/SagaManager
8+
context: ./src/Services/GracePeriod/GracePeriodManager
99
dockerfile: Dockerfile
1010
depends_on:
1111
- sql.data

eShopOnContainers-ServicesAndWebApps.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventBus.Tests", "src\Build
8282
EndProject
8383
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "GracePeriod", "GracePeriod", "{F38B4FF0-0B49-405A-B1B4-F7A5E3BC4C4E}"
8484
EndProject
85-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GracePeriodManager", "src\Services\SagaManager\SagaManager\GracePeriodManager.csproj", "{F6E0F0DD-1400-43C3-B5E0-7CC325728C47}"
85+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GracePeriodManager", "src\Services\GracePeriod\GracePeriodManager\GracePeriodManager.csproj", "{F6E0F0DD-1400-43C3-B5E0-7CC325728C47}"
8686
EndProject
8787
Global
8888
GlobalSection(SolutionConfigurationPlatforms) = preSolution

src/Services/GracePeriod/GracePeriodManager/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ FROM microsoft/dotnet:1.1-runtime
22
ARG source
33
WORKDIR /app
44
COPY ${source:-obj/Docker/publish} .
5-
ENTRYPOINT ["dotnet", "SagaManager.dll"]
5+
ENTRYPOINT ["dotnet", "GracePeriodManager.dll"]

0 commit comments

Comments
 (0)