Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit c8d2d88

Browse files
Merge remote-tracking branch 'idsa/develop' into idsa-main
2 parents 035a238 + a04c967 commit c8d2d88

File tree

7 files changed

+11
-8
lines changed

7 files changed

+11
-8
lines changed

.github/workflows/build-deploy-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
env:
1616
REGISTRY: ghcr.io
17-
IMAGE_NAME: ${{ github.repository }}
17+
IMAGE_NAME: International-Data-Spaces-Association/dataspace-connector-ui
1818

1919
jobs:
2020
build-and-push-image:
@@ -53,4 +53,4 @@ jobs:
5353
context: .
5454
push: true
5555
tags: ${{ steps.meta.outputs.tags }}
56-
labels: ${{ steps.meta.outputs.labels }}
56+
labels: ${{ steps.meta.outputs.labels }}

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ All notable changes to this project will be documented in this file.
4040
- Raised a broad range of comparisons of variables from value to type level
4141
- Validation for database URLs does not require http prefix
4242
- Opening browser in dev mode on wrong URL (0.0.0.0 instead of localhost)
43+
- Adjust image name to `dataspace-connector-ui`
44+
- Add image source `https://github.com/International-Data-Spaces-Association/DataspaceConnectorUI` to Dockerfile
4345

4446
### Removed
4547
- Unused imports

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
FROM node:14
2+
LABEL org.opencontainers.image.source = "https://github.com/International-Data-Spaces-Association/DataspaceConnectorUI"
23
WORKDIR /usr/src/app
34
COPY package*.json ./
45
COPY . .

buildDockerImage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
sudo docker build -t dataspaceconnector-ui .
2+
sudo docker build -t dataspace-connector-ui .

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: '3.5'
22

33
services:
4-
dataspaceconnector-ui:
5-
image: dataspaceconnector-ui
4+
dataspace-connector-ui:
5+
image: dataspace-connector-ui
66
environment:
77
- CONNECTOR_URL=https://localhost:8080
88
- CONNECTOR_USER=admin

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "dataspaceconnector-ui",
2+
"name": "dataspace-connector-ui",
33
"version": "10.0.0",
44
"private": true,
55
"scripts": {

0 commit comments

Comments
 (0)