This repository contains a Dockerfile and related resources for running Talend Studio in a Docker container on your local environment. A Makefile is also provided to simplify building and running the Docker container.
- Docker installed on your local machine
- GNU Make installed on your local machine (optional)
To build the Docker image, run the following command in the directory containing the Dockerfile:
docker build -t talend-studio-docker:latest .
Alternatively, if you have GNU Make installed, you can use the Makefile:
make build
To run the Docker container, execute the following command:
docker run -it --rm -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix talend-studio-docker:latest
Alternatively, if you have GNU Make installed, you can use the Makefile:
make run
This will launch Talend Studio in the Docker container. To stop the container, press Ctrl+C in the terminal.