What is tiller? here
Useful tutorials:
requirements
- Java 8
- Maven 3
The example code can be found here. It is a simple application written in java that exposes an api for read and create notes. It is configured in order to write on a MySQL Database.
$ git clone https://github.com/joebew42/dropwizard-sample-app.git
$ cd dropwizard-sample-app/
$ git checkout tiller
For practicality reason I've already created and pushed a Docker image with Tiller and OpenJDK8-JRE that you can find here, the Dockerfile used is this:
Dockerfile-openjdk8-jre-tiller
FROM alpine:edge
RUN apk add --update alpine-sdk \
&& apk add --update openjdk8-jre-base \
&& apk add --update ruby \
&& apk add --update ruby-dev \
&& gem install --no-ri --no-rdoc json tiller \
&& rm -rf /var/cache/apk/* \
&& mkdir /app
ONBUILD ADD tiller /etc/tiller
CMD ["/usr/bin/tiller" , "-v"]
Dockerfile
FROM joebew42/openjdk8-jre-tiller
COPY target/sample-app-1.0-SNAPSHOT.jar /app
WORKDIR /app
EXPOSE 8080
We simply copy the generated artefact! It is just an example.
$ mvn package
$ docker build -t joebew42/dropwizard-sample-app:latest --rm=true .
For this we use the official MySQL Docker image
$ docker run -d -p 3306:3306 -e MYSQL_ROOT_PASSWORD=root --name=database mysql
$ docker exec -it database sh -c "mysql -uroot -proot -e 'create database db_notes;'"
$ docker run -it -e environment=production -e tiller_json='{"db_name":"db_notes","db_host":"10.0.0.50","db_port":"3306"}' --rm=true joebew42/dropwizard-sample-app:latest tiller -x "java -jar sample-app-1.0-SNAPSHOT.jar db migrate configuration.yml"
$ docker run -it -e environment=production -e tiller_json='{"db_name":"db_notes","db_host":"10.0.0.50","db_port":"3306"}' -p 80:8080 joebew42/dropwizard-sample-app:latest
Take a look at tiller folder to understand how the configuration file is generated:
tiller/
tiller/
├── common.yaml
└── templates
└── configuration.yml.erb
$ curl http://localhost/notes
$ curl -X POST --data "hello world" http://localhost/notes/
$ curl -X POST --data "another hello world" http://localhost/notes/
$ curl http://localhost/notes
$ curl http://localhost/notes/1
$ curl http://localhost/notes/2