Skip to content

Commit caed79b

Browse files
committed
Update readme and package repository
ghcr.io is the main repository
1 parent 291cd0f commit caed79b

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ LinkedPipes ETL is an RDF based, lightweight ETL tool.
88

99
## Requirements
1010
- Linux, Windows, iOS
11-
- [Docker], [Docker Compose]
11+
- [Docker]
12+
- [Docker Compose] is optional as `docker compose` is supported by modern versions of [Docker]
1213

1314
### For building locally
14-
- [Java] 17, 18
15+
- [Java] 17, 18, 20
1516
- [Git]
1617
- Optionally [Maven]
1718
- [Node.js] 18 & npm
@@ -24,9 +25,9 @@ To start LP-ETL you can use:
2425
```
2526
git clone https://github.com/linkedpipes/etl.git
2627
cd etl
27-
docker-compose up
28+
docker compose up
2829
```
29-
This would use pre-build images stored at [DockerHub].
30+
This would use pre-build images stored at [GitHub Packages].
3031
The images are build from the main branch.
3132

3233
Alternatively you can use one liner.
@@ -35,7 +36,7 @@ For example to run LP-ETL from ```develop``` branch on ```http://localhost:9080`
3536
curl https://raw.githubusercontent.com/linkedpipes/etl/develop/docker-compose.yml | LP_ETL_PORT=9080 LP_VERSION=develop docker-compose -f - up
3637
```
3738

38-
You may need to run the ```docker-compose``` command as ```sudo``` or be in the ```docker``` group.
39+
You may need to run the ```docker``` command as ```sudo``` or be in the ```docker``` group.
3940

4041
#### Building Docker images
4142
You can build LP-ETL images your self.
@@ -49,7 +50,7 @@ Environment variables:
4950
- ```LP_ETL_PORT``` - Specify port mapping for frontend, this is where you can connect to your instance.
5051
This does NOT have to be the same as port in ```LP_ETL_DOMAIN``` in case of reverse-proxying.
5152

52-
```docker-compose``` utilizes several volumes that can be used to access/provide data.
53+
```docker compose``` utilizes several volumes that can be used to access/provide data.
5354
See ```docker-compose.yml``` comments for examples and configuration.
5455
You may want to create your own ```docker-compose.yml``` for custom configuration.
5556

@@ -132,3 +133,4 @@ If you need to create your own component, you can copy an existing component and
132133
[Docker]: <https://www.docker.com/>
133134
[Docker Compose]: <https://docs.docker.com/compose/>
134135
[DockerHub]: <https://hub.docker.com/>
136+
[GitHub Packages]: <https://github.com/orgs/linkedpipes/packages>

docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
version: "3"
88
services:
99
storage:
10-
image: linkedpipes/etl-storage:${LP_VERSION-main}
10+
image: ghcr.io/linkedpipes/etl-storage:${LP_VERSION-main}
1111
volumes:
1212
- data-storage:/data/lp-etl/storage
1313
- configuration:/data/lp-etl/configuration
@@ -16,7 +16,7 @@ services:
1616
- LP_ETL_DOMAIN
1717
restart: always
1818
frontend:
19-
image: linkedpipes/etl-frontend:${LP_VERSION-main}
19+
image: ghcr.io/linkedpipes/etl-frontend:${LP_VERSION-main}
2020
volumes:
2121
- configuration:/data/lp-etl/configuration
2222
- data-logs:/data/lp-etl/logs
@@ -26,7 +26,7 @@ services:
2626
- LP_ETL_DOMAIN
2727
restart: always
2828
executor-monitor:
29-
image: linkedpipes/etl-executor-monitor:${LP_VERSION-main}
29+
image: ghcr.io/linkedpipes/etl-executor-monitor:${LP_VERSION-main}
3030
volumes:
3131
- data-execution:/data/lp-etl/executor
3232
- data-logs:/data/lp-etl/logs
@@ -35,7 +35,7 @@ services:
3535
- LP_ETL_DOMAIN
3636
restart: always
3737
executor:
38-
image: linkedpipes/etl-executor:${LP_VERSION-main}
38+
image: ghcr.io/linkedpipes/etl-executor:${LP_VERSION-main}
3939
volumes:
4040
- data-execution:/data/lp-etl/executor
4141
- data-logs:/data/lp-etl/logs

0 commit comments

Comments
 (0)