3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Embulk を docker で動かす Dockerfile の例

Last updated at Posted at 2018-08-10

Dockerfile

javaを入れてからembulkをダウンロードするだけ。

Dockerfile
FROM java:8

RUN apt-get -y update && apt-get -y upgrade

RUN curl --create-dirs -o ~/.embulk/bin/embulk -L "https://dl.embulk.org/embulk-latest.jar"
RUN chmod +x ~/.embulk/bin/embulk
ENV PATH="/root/.embulk/bin:${PATH}"

動作方法

こんな感じ

$ docker build . -t embulk
$ docker -it run embulk /bin/bash
root@b65c16fcfef2:/# embulk --version
embulk 0.9.7

バージョン

  • Docker version 18.03.1-ce, build 9ee9f40

Links

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

Twitter

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?