You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,19 +90,26 @@ Only compatible with **`Unity 2019.1`** and potentially with newer version.
90
90
91
91
## Docker
92
92
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
+
93
99
Example of a basic docker-compose.yml file:
94
100
95
101
```yaml
96
102
services:
97
103
unitynuget:
98
-
build: .
104
+
image: ghcr.io/xoofx/unitynuget:latest
99
105
ports:
100
106
- 5000:80
101
107
volumes:
102
108
- ./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
103
110
```
104
111
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).
106
113
107
114
### Accessing a private NuGet feed from Azure DevOps
0 commit comments