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

Commit a04c967

Browse files
fix: adjust image name
fix: add image source to Dockerfile
1 parent cb0e2d4 commit a04c967

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

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)