Skip to content

Commit

Permalink
0.6.0-r1 release
Browse files Browse the repository at this point in the history
Removes VOLUME instruction from the Dockerfile
  • Loading branch information
Bitnami Bot committed Jul 4, 2017
1 parent 67933b9 commit 3e46dd5
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 85 deletions.
5 changes: 2 additions & 3 deletions 0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bitnami/minideb-extras:jessie-r17
FROM bitnami/minideb-extras:jessie-r19
LABEL maintainer "Bitnami <[email protected]>"


Expand All @@ -10,14 +10,13 @@ RUN bitnami-pkg unpack tensorflow-serving-0.6.0-0 --checksum 0b55d1bf8e0ee73ed74
COPY rootfs /

ENV BITNAMI_APP_NAME="tensorflow-serving" \
BITNAMI_IMAGE_VERSION="0.6.0-r0" \
BITNAMI_IMAGE_VERSION="0.6.0-r1" \
PATH="/opt/bitnami/tensorflow-serving/bin:/opt/bitnami/tensorflow-serving/bazel-bin/tensorflow_serving/model_servers:$PATH" \
TENSORFLOW_SERVING_MODEL_NAME="inception" \
TENSORFLOW_SERVING_PORT_NUMBER="9000"



VOLUME ["/bitnami/model-data","/bitnami/tensorflow-serving"]

EXPOSE 9000

Expand Down
2 changes: 1 addition & 1 deletion 0/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
ports:
- '9000:9000'
volumes:
- 'tensorflow_serving_data:/bitnami/tensorflow-serving'
- 'tensorflow_serving_data:/bitnami'
- '/tmp/model-data:/bitnami/model-data'
volumes:
tensorflow_serving_data:
Expand Down
120 changes: 39 additions & 81 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![CircleCI](https://circleci.com/gh/bitnami/bitnami-docker-tensorflow-serving/tree/master.svg?style=shield)](https://circleci.com/gh/bitnami/bitnami-docker-tensorflow-serving/tree/master)
[![Slack](http://slack.oss.bitnami.com/badge.svg)](http://slack.oss.bitnami.com)
[![Slack](https://img.shields.io/badge/slack-join%20chat%20%E2%86%92-e01563.svg)](http://slack.oss.bitnami.com)
[![Kubectl](https://img.shields.io/badge/kubectl-Available-green.svg)](https://raw.githubusercontent.com/bitnami/bitnami-docker-tensorflow-serving/master/kubernetes.yml)

# What is Tensorflow Serving?
Expand All @@ -15,26 +15,21 @@
# TL;DR;

```bash
docker run --name tensorflow-serving bitnami/tensorflow-serving:latest
$ docker run --name tensorflow-serving bitnami/tensorflow-serving:latest
```

## Docker Compose

```yaml
version: '2'

services:
tensorflow-serving:
image: 'bitnami/tensorflow-serving:latest'
ports:
- '9000:9000'
```bash
$ curl -sSL https://raw.githubusercontent.com/bitnami/bitnami-docker-tensorflow-serving/master/docker-compose.yml > docker-compose.yml
$ docker-compose up -d
```

## Kubernetes

> **WARNING:** This is a beta configuration, currently unsupported.
Get the raw URL pointing to the kubernetes.yml manifest and use kubectl to create the resources on your Kubernetes cluster like so:
Get the raw URL pointing to the `kubernetes.yml` manifest and use `kubectl` to create the resources on your Kubernetes cluster like so:

```bash
$ kubectl create -f https://raw.githubusercontent.com/bitnami/bitnami-docker-tensorflow-serving/master/kubernetes.yml
Expand All @@ -53,29 +48,29 @@ $ kubectl create -f https://raw.githubusercontent.com/bitnami/bitnami-docker-ten
The recommended way to get the Bitnami TensorFlow Serving Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/tensorflow-serving).

```bash
docker pull bitnami/tensorflow-serving:latest
$ docker pull bitnami/tensorflow-serving:latest
```

To use a specific version, you can pull a versioned tag. You can view the [list of available versions](https://hub.docker.com/r/bitnami/tensorflow-serving/tags/) in the Docker Hub Registry.

```bash
docker pull bitnami/tensorflow-serving:[TAG]
$ docker pull bitnami/tensorflow-serving:[TAG]
```

If you wish, you can also build the image yourself.

```bash
docker build -t bitnami/tensorflow-serving:latest https://github.com/bitnami/bitnami-docker-tensorflow-serving.git
$ docker build -t bitnami/tensorflow-serving:latest https://github.com/bitnami/bitnami-docker-tensorflow-serving.git
```

# Persisting your configuration

If you remove the container all your data and configurations will be lost, and the next time you run the image the data and configurations will be reinitialized. To avoid this loss of data, you should mount a volume that will persist even after the container is removed.

The image exposes a volume at `/bitnami/tensorflow-serving` for the TensorFlow Serving data and configurations. For persistence you can mount a directory at this location from your host. If the mounted directory is empty, it will be initialized on the first run.
For persistence you should mount a volume at the `/bitnami` path for the TensorFlow Serving data and configurations. If the mounted directory is empty, it will be initialized on the first run.

```bash
docker run -v /path/to/tensorflow-serving-persistence:/bitnami/tensorflow-serving bitnami/tensorflow-serving:latest
$ docker run -v /path/to/tensorflow-serving-persistence:/bitnami bitnami/tensorflow-serving:latest
```

or using Docker Compose:
Expand All @@ -89,7 +84,7 @@ services:
ports:
- '9000:9000'
volumes:
- /path/to/tensorflow-serving-persistence:/bitnami/tensorflow-serving
- /path/to/tensorflow-serving-persistence:/bitnami
```
# Connecting to other containers
Expand Down Expand Up @@ -176,14 +171,14 @@ $ docker-compose up -d

## Configuration file

The image looks for configuration in the `conf/` directory of `/bitnami/tensorflow-serving`. As as mentioned in [Persisting your configuration](##persisting-your-configuration) you can mount a volume at this location and copy your own configurations in the `conf/` directory. The default configuration will be copied to the `conf/` directory if it's empty.
The image looks for configurations in `/bitnami/tensorflow-serving/conf/`. As mentioned in [Persisting your configuation](#persisting-your-configuation) you can mount a volume at `/bitnami` and copy/edit the configurations in the `/path/to/tensorflow-serving-persistence/tensorflow-serving/conf/`. The default configurations will be populated to the `conf/` directory if it's empty.

### Step 1: Run the TensorFlow Serving image

Run the TensorFlow Serving image, mounting a directory from your host.

```bash
docker run --name tensorflow-serving -v /path/to/tensorflow-serving-persistence:/bitnami/tensorflow-serving bitnami/tensorflow-serving:latest
$ docker run --name tensorflow-serving -v /path/to/tensorflow-serving-persistence:/bitnami bitnami/tensorflow-serving:latest
```

or using Docker Compose:
Expand All @@ -197,43 +192,43 @@ services:
ports:
- '9000:9000'
volumes:
- /path/to/tensorflow-serving-persistence:/bitnami/tensorflow-serving
- /path/to/tensorflow-serving-persistence:/bitnami
```

### Step 2: Edit the configuration

Edit the configuration on your host using your favorite editor.

```bash
vi /path/to/tensorflow-serving-persistence/conf/tensorflow-serving.conf
$ vi /path/to/tensorflow-serving-persistence/conf/tensorflow-serving.conf
```

### Step 3: Restart TensorFlow Serving

After changing the configuration, restart your TensorFlow Serving container for changes to take effect.

```bash
docker restart tensorflow-serving
$ docker restart tensorflow-serving
```

or using Docker Compose:

```bash
docker-compose restart tensorflow-serving
$ docker-compose restart tensorflow-serving
```

# Logging

The Bitnami TensorFlow Serving Docker image sends the container logs to the `stdout`. To view the logs:

```bash
docker logs tensorflow-serving
$ docker logs tensorflow-serving
```

or using Docker Compose:

```bash
docker-compose logs tensorflow-serving
$ docker-compose logs tensorflow-serving
```

The logs are also stored inside the container in the /opt/bitnami/tensorflow-serving/logs/tensorflow-serving.log file.
Expand All @@ -242,103 +237,65 @@ You can configure the containers [logging driver](https://docs.docker.com/engine

# Maintenance

## Backing up your container
## Upgrade this image

To backup your data, configuration and logs, follow these simple steps:
Bitnami provides up-to-date versions of TensorFlow Serving, including security patches, soon after they are made upstream. We recommend that you follow these steps to upgrade your container.

### Step 1: Stop the currently running container
### Step 1: Get the updated image

```bash
docker stop tensorflow-serving
$ docker pull bitnami/tensorflow-serving:latest
```

or using Docker Compose:

```bash
docker-compose stop tensorflow-serving
```
or if you're using Docker Compose, update the value of the image property to
`bitnami/tensorflow-serving:latest`.

### Step 2: Run the backup command
### Step 2: Stop and backup the currently running container

We need to mount two volumes in a container we will use to create the backup: a directory on your host to store the backup in, and the volumes from the container we just stopped so we can access the data.
Stop the currently running container using the command

```bash
docker run --rm -v /path/to/tensorflow-serving-backups:/backups --volumes-from tensorflow-serving busybox \
cp -a /bitnami/tensorflow-serving:latest /backups/latest
$ docker stop tensorflow-serving
```

or using Docker Compose:

```bash
docker run --rm -v /path/to/tensorflow-serving-backups:/backups --volumes-from `docker-compose ps -q tensorflow-serving` busybox \
cp -a /bitnami/tensorflow-serving:latest /backups/latest
```

## Restoring a backup

Restoring a backup is as simple as mounting the backup as volumes in the container.

```bash
docker run -v /path/to/tensorflow-serving-backups/latest:/bitnami/tensorflow-serving bitnami/tensorflow-serving:latest
$ docker-compose stop tensorflow-serving
```

or using Docker Compose:

```yaml
version: '2'

services:
tensorflow-serving:
image: 'bitnami/tensorflow-serving:latest'
ports:
- '9000:9000'
volumes:
- /path/to/tensorflow-serving-backups/latest:/bitnami/tensorflow-serving
```
## Upgrade this image
Bitnami provides up-to-date versions of TensorFlow Serving, including security patches, soon after they are made upstream. We recommend that you follow these steps to upgrade your container.
### Step 1: Get the updated image
Next, take a snapshot of the persistent volume `/path/to/tensorflow-serving-persistence` using:

```bash
docker pull bitnami/tensorflow-serving:latest
$ rsync -a /path/to/tensorflow-serving-persistence /path/to/tensorflow-serving-persistence.bkp.$(date +%Y%m%d-%H.%M.%S)
```

or if you're using Docker Compose, update the value of the image property to
`bitnami/tensorflow-serving:latest`.

### Step 2: Stop and backup the currently running container

Before continuing, you should backup your container's data, configuration and logs.

Follow the steps on [creating a backup](#backing-up-your-container).
You can use this snapshot to restore the database state should the upgrade fail.

### Step 3: Remove the currently running container

```bash
docker rm -v tensorflow-serving
$ docker rm -v tensorflow-serving
```

or using Docker Compose:

```bash
docker-compose rm -v tensorflow-serving
$ docker-compose rm -v tensorflow-serving
```

### Step 4: Run the new image

Re-create your container from the new image, [restoring your backup](#restoring-a-backup) if necessary.

```bash
docker run --name tensorflow-serving bitnami/tensorflow-serving:latest
$ docker run --name tensorflow-serving bitnami/tensorflow-serving:latest
```

or using Docker Compose:

```bash
docker-compose start tensorflow-serving
$ docker-compose start tensorflow-serving
```

# Contributing
Expand All @@ -362,7 +319,8 @@ Most real time communication happens in the `#containers` channel at [bitnami-os
Discussions are archived at [bitnami-oss.slackarchive.io](https://bitnami-oss.slackarchive.io).

# License
Copyright (c) 2015-2016 Bitnami

Copyright 2017 Bitnami

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down

0 comments on commit 3e46dd5

Please sign in to comment.