Skip to content

Commit 90dcde4

Browse files
committed
Add more information to the Docker section in the Readme.md file
1 parent 1e51f26 commit 90dcde4

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

readme.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,19 +90,26 @@ Only compatible with **`Unity 2019.1`** and potentially with newer version.
9090
9191
## Docker
9292

93+
> Available in [ghcr (GitHub Container Registry)](https://github.com/xoofx/UnityNuGet/pkgs/container/unitynuget).
94+
>
95+
> Supported platforms:
96+
> - linux/amd64
97+
> - linux/arm64
98+
9399
Example of a basic docker-compose.yml file:
94100

95101
```yaml
96102
services:
97103
unitynuget:
98-
build: .
104+
image: ghcr.io/xoofx/unitynuget:latest
99105
ports:
100106
- 5000:80
101107
volumes:
102108
- ./unity_packages:/app/unity_packages
109+
- ./registry.json:/app/registry.json # (Optional) You can have your own registry.json with a different package list than the one already included in the repository
103110
```
104111
105-
There is a complete example in [examples/docker](examples/docker).
112+
There is a complete example with all available options in [examples/docker](examples/docker).
106113
107114
### Accessing a private NuGet feed from Azure DevOps
108115

0 commit comments

Comments
 (0)