docker run --restart on-failure -p 19630:19630 -d --name streamsets-transformer streamsets/transformer
The default login is: admin / admin.
transformer.properties can also be overridden at runtime by specifying them env vars prefixed
with TRANSFORMER_CONF
*, For example, http.port would be set as TRANSFORMER_CONF_HTTP_PORT=12345For example to run with a customized sdc.properties file, a local filsystem path to store pipelines, and statically map the default UI port you could use the following:
docker run -v $PWD/sdc.properties:/etc/transformer/transformer.properties:ro -v $PWD/transformer-data:/data:rw -p 19630:19630 -d streamsets/transformer transformer
To create a dedicated data volume for the pipeline store issue the following command:
docker volume create --name transformer-data
You can then use the -v (volume) argument to mount it when you start the transformer.
docker run -v transformer-data:/data -P -d streamsets/transformer transformer
Note: There are two different methods for managing data in Docker. The above is using data volumes which are empty when created. You can also use data containers which are derived from an image. These are useful when you want to modify and persist a path starting with existing files from a base container, such as for configuration files. We'll use both in the example below. See Manage data in containers for more detailed documentation.
Content type
Image
Digest
sha256:8d18351fc…
Size
4 GB
Last updated
10 months ago
docker pull streamsets/transformer:scala-2.12_6.3.0-SNAPSHOT