abaair davis
abaair davis

Reputation: 189

How to define the setting in the docker image not run through jupyter notebook

I am trying to run the below docker image from https://hub.docker.com/r/fbcotter/docker-tensorflow- opencv/

FROM tensorflow/tensorflow:1.8.0-py3
RUN apt-get update
RUN apt-get install -y \
    build-essential \
    cmake \
    git \
    wget \
    unzip \
    yasm \
    pkg-config \
    libswscale-dev \
    libtbb2 \
    libtbb-dev \
    libjpeg-dev \
    libpng-dev \
    libtiff-dev \
    libjasper-dev \
    libavformat-dev \
    libhdf5-dev \
    libpq-dev
RUN pip3 --no-cache-dir install \
 numpy \
 hdf5storage \
 h5py \
 scipy \
 py3nvml

WORKDIR /
ENV OPENCV_VERSION="3.4.1"
RUN wget https://github.com/opencv/opencv/archive/${OPENCV_VERSION}.zip \
&& unzip ${OPENCV_VERSION}.zip \
&& mkdir /opencv-${OPENCV_VERSION}/cmake_binary \
&& cd /opencv-${OPENCV_VERSION}/cmake_binary \
&& cmake -DBUILD_TIFF=ON \
 -DBUILD_opencv_java=OFF \
 -DWITH_CUDA=OFF \
 -DENABLE_AVX=ON \
 -DWITH_OPENGL=ON \
 -DWITH_OPENCL=ON \
 -DWITH_IPP=ON \
 -DWITH_TBB=ON \
 -DWITH_EIGEN=ON \
 -DWITH_V4L=ON \
-DBUILD_TESTS=OFF \
 -DBUILD_PERF_TESTS=OFF \
 -DCMAKE_BUILD_TYPE=RELEASE \
 -DCMAKE_INSTALL_PREFIX=$(python3 -c "import sys; print(sys.prefix)") \
 -DPYTHON_EXECUTABLE=$(which python3) \
 -DPYTHON_INCLUDE_DIR=$(python3 -c "from distutils.sysconfig import get_python_inc; 
  print(get_python_inc())") \
 -DPYTHON_PACKAGES_PATH=$(python3 -c "from distutils.sysconfig import get_python_lib; 
 print(get_python_lib())") .. \
&& make install \
&& rm /${OPENCV_VERSION}.zip \
&& rm -r /opencv-${OPENCV_VERSION}
RUN pip3 install -q keras==2.3.1
RUN pip3 install pyzmq
RUN pip3 install pillow
RUN  mkdir -p /edge_app/src
WORKDIR /edge_app/src
COPY . ./
#CMD ["python","streamer.py"]

Command to run the docker image

 docker run --rm -it -p:ip:port:port test

When I run the above docker image I am able to access it through Jupyter notebook. My question how to disable the jupyter notebook, because I want to access the docker container through bash. Thanks, help is highly appreciated.

Upvotes: 1

Views: 58

Answers (1)

code-gorilla
code-gorilla

Reputation: 2418

You could directly run your container with a custom command:

 docker run -it -p port:port test /bin/bash

Upvotes: 2

Related Questions