Skip to content

Commit 0f23744

Browse files
author
Nicolas Oman
committed
updated onebox container image location
1 parent 5e462db commit 0f23744

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

articles/service-fabric/service-fabric-get-started-linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.date: 2/23/2018
1515
1616
To deploy and run [Azure Service Fabric applications](service-fabric-application-model.md) on your Linux development machine, install the runtime and common SDK. You can also install optional SDKs for Java and .NET Core development.
1717

18-
The steps in this article assume that you install natively on Linux or use the Service Fabric OneBox container image, `microsoft/service-fabric-onebox`.
18+
The steps in this article assume that you install natively on Linux or use the Service Fabric OneBox container image, `mcr.microsoft.com/service-fabric/onebox:latest`.
1919

2020
Installing the Service Fabric runtime and SDK on Windows Subsystem for Linux is not supported. You can manage Service Fabric entities hosted elsewhere in the cloud or on-premises with the Azure Service Fabric command-line interface (CLI), which is supported. For information on how to install the CLI, see [Set up the Service Fabric CLI](./service-fabric-cli.md).
2121

articles/service-fabric/service-fabric-get-started-mac.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ To set up a local Docker container and have a Service Fabric cluster running on
5353
2. In a new directory create a file called `Dockerfile` to build your Service Fabric Image:
5454

5555
```Dockerfile
56-
FROM microsoft/service-fabric-onebox
56+
FROM mcr.microsoft.com/service-fabric/onebox:latest
5757
WORKDIR /home/ClusterDeployer
5858
RUN ./setup.sh
5959
#Generate the local
@@ -94,7 +94,7 @@ To set up a local Docker container and have a Service Fabric cluster running on
9494
>
9595
>If your application is listening on certain ports, the ports must be specified by using additional `-p` tags. For example, if your application is listening on port 8080, add the following `-p` tag:
9696
>
97-
>`docker run -itd -p 19080:19080 -p 8080:8080 --name sfonebox microsoft/service-fabric-onebox`
97+
>`docker run -itd -p 19080:19080 -p 8080:8080 --name sfonebox mcr.microsoft.com/service-fabric/onebox:latest`
9898
>
9999

100100
5. The cluster will take a moment to start. When it is running, you can view logs using the following command or jump to the dashboard to view the clusters health [http://localhost:19080](http://localhost:19080):
@@ -193,7 +193,7 @@ Azure Service Fabric provides a plug-in for Eclipse Neon (or later) for the Java
193193
The last step is to instantiate the container with a path that is shared with your host. The plug-in requires this type of instantiation to work with the Docker container on your Mac. For example:
194194
195195
```bash
196-
docker run -itd -p 19080:19080 -v /Users/sayantan/work/workspaces/mySFWorkspace:/tmp/mySFWorkspace --name sfonebox microsoft/service-fabric-onebox
196+
docker run -itd -p 19080:19080 -v /Users/sayantan/work/workspaces/mySFWorkspace:/tmp/mySFWorkspace --name sfonebox mcr.microsoft.com/service-fabric/onebox:latest
197197
```
198198
199199
The attributes are defined as follows:

articles/service-fabric/service-fabric-local-linux-cluster-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ To set up a local Docker container and have a service fabric cluster running on
4040
2. In a new directory create a file called `Dockerfile` to build your Service Fabric Image:
4141

4242
```Dockerfile
43-
FROM microsoft/service-fabric-onebox
43+
FROM mcr.microsoft.com/service-fabric/onebox:latest
4444
WORKDIR /home/ClusterDeployer
4545
RUN ./setup.sh
4646
#Generate the local
@@ -81,7 +81,7 @@ To set up a local Docker container and have a service fabric cluster running on
8181
>
8282
>If your application is listening on certain ports, the ports must be specified by using additional `-p` tags. For example, if your application is listening on port 8080, add the following `-p` tag:
8383
>
84-
>`docker run -itd -p 19080:19080 -p 8080:8080 --name sfonebox microsoft/service-fabric-onebox`
84+
>`docker run -itd -p 19080:19080 -p 8080:8080 --name sfonebox mcr.microsoft.com/service-fabric/onebox:latest`
8585
>
8686

8787
5. The cluster will take a short amount of time to start, you can view logs using the following command or jump to the dashboard to view the clusters health [http://localhost:19080](http://localhost:19080):

articles/service-fabric/service-fabric-tutorial-create-java-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,7 @@ At this point, the application is ready to be deployed to a local Service Fabric
884884
If you are using a Mac, you run the local cluster with the following command: Replace the command passed into the **-v** parameter with the path to your own workspace.
885885
886886
```bash
887-
docker run -itd -p 19080:19080 -p 8080:8080 -p --name sfonebox servicefabricoss/service-fabric-onebox
887+
docker run -itd -p 19080:19080 -p 8080:8080 -p --name sfonebox mcr.microsoft.com/service-fabric/onebox:latest
888888
```
889889
See more detailed instructions in the [OS X setup guide.](service-fabric-get-started-mac.md)
890890

0 commit comments

Comments
 (0)