Code Monkey home page Code Monkey logo

talend-remote-engine-docker's Introduction

Talend Remote Engine in Docker

โš ๏ธ This repository has just been quickly hacked together as a proof of concept and is not officially supported by Talend, Inc.

This repository contains a basic Dockerfile to show how a remote engine can be run in Docker. In order to build this image, you have to log in to the Talend Portal and download the Archive for Linux (tar.gz) in the desired version into the remote-engine/ subfolder.

# When setting the version, make sure the exact string is contained in the Talend Remote Engine archive's name
# Usually the archive name resembles to "Talend-RemoteEngine-V<X>.<Y>.<Z>-<BUILD_NUMBER>.tar.gz"
export TALEND_RE_VERSION="2.9.1"
docker build -t marcelbrueckner/talend-remote-engine:${TALEND_RE_VERSION} --build-arg TALEND_RE_VERSION=${TALEND_RE_VERSION} .

Start a container from your newly built image. Simply place your environment variables in a dedicated file (see example.env in this repository). Don't forget to persist the Engine's configuration to be able to connect on a container restart.

docker run -d --env-file .env --volume "remote-engine-data:/opt/talend/remote-engine/etc" marcelbrueckner/talend-remote-engine:${TALEND_RE_VERSION}

Alternatively export the values to your environment and pass them along.

export TALEND_RE_KEY="<Your super secret pairing key>"
export TALEND_RE_NAME="<Name of your Remote Engine>"
export TALEND_RE_DESC="<Some descriptive words>"
# One of eu, us, ap, us-west
export TALEND_RE_REGION=eu
docker run -d --env TALEND_RE_KEY --env TALEND_RE_NAME --env TALEND_RE_DESC --env TALEND_RE_REGION --volume "remote-engine-data:/opt/talend/remote-engine/etc" marcelbrueckner/talend-remote-engine:${TALEND_RE_VERSION}

talend-remote-engine-docker's People

Contributors

marcelbrueckner avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.