https://github.com/hiiiide/docker-digdag-embulk
An Alpine Linux based ETL workflow container.
https://github.com/hiiiide/docker-digdag-embulk
alpine digdag docker embulk etl
Last synced: about 1 year ago
JSON representation
An Alpine Linux based ETL workflow container.
- Host: GitHub
- URL: https://github.com/hiiiide/docker-digdag-embulk
- Owner: hiiiide
- License: mit
- Created: 2019-01-28T09:02:21.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-02T12:50:49.000Z (almost 7 years ago)
- Last Synced: 2025-02-02T04:31:52.810Z (over 1 year ago)
- Topics: alpine, digdag, docker, embulk, etl
- Language: Dockerfile
- Homepage:
- Size: 17.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-digdag-embulk
An Alpine Linux based ETL workflow container.
[](https://hub.docker.com/r/exelexe/digdag-embulk)
## Docker Tags
- [`0.3.0-ruby2.6-alpine3.10`, `latest`](https://github.com/exelexe/docker-digdag-embulk/blob/master/0.3.0/ruby2.6-alpine3.10/Dockerfile)
- [`0.3.0-alpine3.10`](https://github.com/exelexe/docker-digdag-embulk/blob/master/0.3.0/alpine3.10/Dockerfile)
- [`0.2.0-ruby2.6-alpine3.9`](https://github.com/exelexe/docker-digdag-embulk/blob/master/0.2.0/ruby2.6-alpine3.9/Dockerfile)
- [`0.2.0-alpine3.9`](https://github.com/exelexe/docker-digdag-embulk/blob/master/0.2.0/alpine3.9/Dockerfile)
- [`0.1.0-ruby2.6-alpine3.9`](https://github.com/exelexe/docker-digdag-embulk/blob/master/0.1.0/ruby2.6-alpine3.9/Dockerfile)
- [`0.1.0-alpine3.9`](https://github.com/exelexe/docker-digdag-embulk/blob/master/0.1.0/alpine3.9/Dockerfile)
- [`0.0.0-alpine3.8`](https://github.com/exelexe/docker-digdag-embulk/blob/master/0.0.0/alpine3.8/Dockerfile)
## How to use
For example
```Dockerfile
FROM exelexe/digdag-embulk:latest
RUN embulk gem install \
embulk-input-mysql \
embulk-output-bigquery
WORKDIR /usr/src/
CMD ["digdag", "init", "my_workflow"]
WORKDIR /usr/src/my_workflow
COPY . .
CMD ["digdag","run","sample.dig"]
```