Skip to content

Commit

Permalink
[Feature][Docker] add full-connector setting
Browse files Browse the repository at this point in the history
  • Loading branch information
liunaijie committed Jan 30, 2024
1 parent c8f959a commit f1a048b
Show file tree
Hide file tree
Showing 3 changed files with 648 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/en/start-v2/docker/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ sidebar_position: 3

### Download

SeaTunnel has 2 docker images.
one is light version `apache/seatunnel`, only include fake, console connector. if you need another connector you need re-build or mount the lib in runtime.
another is the full connector version `apache/seatunnel-full`, include all connectors. but the image size is bigger.

```shell
docker pull apache/seatunnel
```
Expand All @@ -24,7 +28,7 @@ docker run --rm -it apache/seatunnel bash ./bin/seatunnel.sh -e local -c config/
```

### Install the connectors you needed
### Install the connectors you needed (If you downloaded the full connector image, you can skip this step)

We only provide the fake source and console sink connector in this image, if you need other connectors, you can follow the below steps to install the connector.

Expand Down
15 changes: 15 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1014,6 +1014,21 @@
<docker.push.skip>false</docker.push.skip>
</properties>
</profile>
<profile>
<id>docker-full</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<modules>
<module>seatunnel-dist</module>
</modules>
<properties>
<docker.build.skip>false</docker.build.skip>
<docker.verify.skip>false</docker.verify.skip>
<docker.push.skip>false</docker.push.skip>
<docker.tag>${project.version}-full</docker.tag>
</properties>
</profile>
<!-- The ci need build without seatunnel-dist modules, so we need add a no_dist profile -->
<profile>
<id>ci</id>
Expand Down
Loading

0 comments on commit f1a048b

Please sign in to comment.