Skip to content

Commit e35d96a

Browse files
authored
Update docs on registry authentication and image naming (#275)
update docs on registry authentication and image naming in response to some user feedback
1 parent bb1114f commit e35d96a

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

docs/ContainerCustomization.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,12 @@ If you set a value here, you should set the fully-qualified name of the image to
2828

2929
This property controls the destination registry - the place that the newly-created image will be pushed to.
3030

31-
Be default, we push to the local Docker daemon (annotated by `docker://`), but for this release you can specify any _unauthenticated_ registry. For example:
31+
Be default, we push to the local Docker daemon (annotated by `docker://`), but you can also specify a remote registry. Interacting with that registry may require authentication, see [Authenticating to container registries](./RegistryAuthentication.md) for more details.
3232

3333
```xml
3434
<ContainerRegistry>registry.mycorp.com:1234</ContainerRegistry>
3535
```
3636

37-
> **Note**
38-
> There is no authentication currently supported - that [will come in a future release](https://github.com/dotnet/sdk-container-builds/issues/70) - so make sure you're pointing to a local Docker daemon
39-
4037
## ContainerImageName
4138

4239
This property controls the name of the image itself, e.g `dotnet/runtime` or `my-awesome-app`.
@@ -48,7 +45,7 @@ By default, the value used will be the `AssemblyName` of the project.
4845
```
4946

5047
> **Note**
51-
> Image names can only contain lowercase alphanumeric characters, periods, underscores, and dashes, and must start with a letter or number - any other characters will result in an error being thrown.
48+
> Image names consist of one or more slash-delimited segments, each of which can only contain lowercase alphanumeric characters, periods, underscores, and dashes, and must start with a letter or number - any other characters will result in an error being thrown.
5249
5350
## ContainerImageTag(s)
5451

0 commit comments

Comments
 (0)