An open API service indexing awesome lists of open source software.

https://github.com/hiiiide/docker-embulk

Docker files of the Embulk.
https://github.com/hiiiide/docker-embulk

docker embulk

Last synced: over 1 year ago
JSON representation

Docker files of the Embulk.

Awesome Lists containing this project

README

          

# docker-embulk

An AlpineLinux Embulk docker container.

![dockeri.co](http://dockeri.co/image/exelexe/embulk)

## Docker Tags

- [`0.9.13-alpine3.8`, `latest`](https://github.com/exelexe/docker-embulk/tree/master/0.9.13/alpine3.8/Dockerfile)
- [`0.9.12-alpine3.8`](https://github.com/exelexe/docker-embulk/tree/master/0.9.12/alpine3.8/Dockerfile)
- [`0.9.9-alpine3.8`](https://github.com/exelexe/docker-embulk/tree/master/0.9.9/alpine3.8/Dockerfile)

## How to use

For example

```dockerfile
FROM exelexe/embulk:latest

RUN adduser -D embulk
USER embulk

RUN embulk gem install \
embulk-input-mysql \
embulk-output-bigquery

WORKDIR /usr/src
COPY --chown=embulk:embulk . .
```