@@ -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```
2526git clone https://github.com/linkedpipes/etl.git
2627cd 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 ] .
3031The images are build from the main branch.
3132
3233Alternatively you can use one liner.
@@ -35,7 +36,7 @@ For example to run LP-ETL from ```develop``` branch on ```http://localhost:9080`
3536curl 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
4142You 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.
5354See ``` docker-compose.yml ``` comments for examples and configuration.
5455You 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 >
0 commit comments