From 03c7e11e645f6c5b015f95f629ec0d96b9440d56 Mon Sep 17 00:00:00 2001 From: Tomas Pizarro Date: Tue, 27 Nov 2018 16:11:55 +0000 Subject: [PATCH] Initial commit --- .../.github/ISSUE_TEMPLATE.md | 60 +++++++++++++++++++ .../.github/PULL_REQUEST_TEMPLATE.md | 32 ++++++++++ bitnami/tensorflow-resnet/.gitignore | 1 + bitnami/tensorflow-resnet/LICENSE | 13 ++++ bitnami/tensorflow-resnet/docker-compose.yml | 24 ++++++++ 5 files changed, 130 insertions(+) create mode 100644 bitnami/tensorflow-resnet/.github/ISSUE_TEMPLATE.md create mode 100644 bitnami/tensorflow-resnet/.github/PULL_REQUEST_TEMPLATE.md create mode 100644 bitnami/tensorflow-resnet/.gitignore create mode 100644 bitnami/tensorflow-resnet/LICENSE create mode 100644 bitnami/tensorflow-resnet/docker-compose.yml diff --git a/bitnami/tensorflow-resnet/.github/ISSUE_TEMPLATE.md b/bitnami/tensorflow-resnet/.github/ISSUE_TEMPLATE.md new file mode 100644 index 000000000000..da2b4da33fde --- /dev/null +++ b/bitnami/tensorflow-resnet/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,60 @@ + + +**Description** + + + +**Steps to reproduce the issue:** + +1. [First Step] +2. [Second Step] +3. [and so on...] + +**Describe the results you received:** + + + +**Describe the results you expected:** + + + +**Additional information you deem important (e.g. issue happens only occasionally):** + + + +**Version** + +- Output of `docker version`: + +``` +(paste your output here) +``` + +- Output of `docker info`: + +``` +(paste your output here) +``` + +- Output of `docker-compose version` (if applicable): + +``` +(paste your output here) +``` + +**Additional environment details (AWS, VirtualBox, Docker for MAC, physical, etc.):** diff --git a/bitnami/tensorflow-resnet/.github/PULL_REQUEST_TEMPLATE.md b/bitnami/tensorflow-resnet/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000000..c2acbe6e0d70 --- /dev/null +++ b/bitnami/tensorflow-resnet/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,32 @@ + + +**Description of the change** + + + +**Benefits** + + + +**Possible drawbacks** + + + +**Applicable issues** + + + +**Additional information** + + diff --git a/bitnami/tensorflow-resnet/.gitignore b/bitnami/tensorflow-resnet/.gitignore new file mode 100644 index 000000000000..51b4cfda1133 --- /dev/null +++ b/bitnami/tensorflow-resnet/.gitignore @@ -0,0 +1 @@ +local/ diff --git a/bitnami/tensorflow-resnet/LICENSE b/bitnami/tensorflow-resnet/LICENSE new file mode 100644 index 000000000000..9d91036a8003 --- /dev/null +++ b/bitnami/tensorflow-resnet/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2018 Bitnami + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/bitnami/tensorflow-resnet/docker-compose.yml b/bitnami/tensorflow-resnet/docker-compose.yml new file mode 100644 index 000000000000..a86b4018884c --- /dev/null +++ b/bitnami/tensorflow-resnet/docker-compose.yml @@ -0,0 +1,24 @@ +version: '2' +services: + tensorflow-serving: + image: 'bitnami/tensorflow-serving:latest' + environment: + - TENSORFLOW_SERVING_MODEL_NAME=resnet + ports: + - 8500:8500 + - 8501:8501 + volumes: + - 'tensorflow_serving_data:/bitnami' + - '/tmp/model-data:/bitnami/model-data' + tensorflow-resnet: + image: 'bitnami/tensorflow-resnet:latest' + depends_on: + - tensorflow-serving + volumes: + - 'tensorflow_resnet_data:/bitnami' + - '/tmp/model-data:/bitnami/model-data' +volumes: + tensorflow_serving_data: + driver: local + tensorflow_resnet_data: + driver: local