File tree Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -11,17 +11,18 @@ COPY ui /ui
11
11
RUN npm run build
12
12
13
13
FROM alpine
14
- LABEL org.opencontainers.image.title="NGINX Docker Desktop Extension " \
15
- org.opencontainers.image.description="NGINXs Docker Desktop Extension " \
14
+ LABEL org.opencontainers.image.title="NGINX Development Center " \
15
+ org.opencontainers.image.description="NGINX Development Center for Docker Desktop" \
16
16
org.opencontainers.image.vendor="NGINX Inc." \
17
17
com.docker.desktop.extension.api.version="0.3.3" \
18
- com.docker.extension.screenshots="" \
19
- com.docker.extension.detailed-description="" \
18
+ com.docker.extension.screenshots='[{"alt":"NGINX Docker Development Center", "url":"https://raw.githubusercontent.com/nginx/docker-extension/main/docs/NGINX-dd-extension.png"}]' \
19
+ com.docker.desktop.extension.icon="https://raw.githubusercontent.com/nginx/docker-extension/main/logo.svg" \
20
+ com.docker.extension.detailed-description="With the NGINX Docker Development Center you are able to configure your running NGINX Docker Instances." \
20
21
com.docker.extension.publisher-url="https://nginx.org/" \
21
- com.docker.extension.additional-urls="" \
22
+ com.docker.extension.additional-urls="https://nginx.com/ " \
22
23
com.docker.extension.categories="utility-tools" \
23
- com.docker.extension.changelog="Inital Version "
24
+ com.docker.extension.changelog="Initial Release "
24
25
25
26
COPY metadata.json .
26
27
COPY logo.svg .
27
- COPY --from=client-builder /ui/build ui
28
+ COPY --from=client-builder /ui/build ui
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ The NGINX Docker Desktop Extension can be used to manage the instance configurat
7
7
## Development
8
8
Before we can interactively develop the Extensions frontend, it must be installed first.
9
9
10
- To build the extension
10
+ To build the extension locally.
11
11
``` shell
12
12
docker build -t nginx/nginx-dd-extension .
13
13
```
@@ -20,6 +20,11 @@ To remove the extension
20
20
``` shell
21
21
docker remove nginx/nginx-dd-extension
22
22
```
23
+ ## Release
24
+
25
+ ``` shell
26
+ docker buildx build --push --no-cache --platform=linux/amd64,linux/arm64 -t nginx/nginx-docker-extension:0.0.1 .
27
+ ```
23
28
24
29
### Start Docker Extension Development Server
25
30
1 . start the UI node server in the ` ui ` directory. Make sure you install the dev dependencies at the first.
You can’t perform that action at this time.
0 commit comments