It's a docker for running tensorflow tensorboard.
You can find me here. --> https://github.com/volnet/docker-tensorflow-tensorboard.git
The next scripts can help you to run jupyter notebook
and tensorboard
at one time:
git clone https://github.com/volnet/tensorflow-server.git
cd tensorflow-server
./tf_start_all.sh
You can stop all of them by :
./tf_stop_all.sh
The shell script can help you to run docker:
docker run -d -p 6006:6006 -v $(pwd)/logs:/logs --name my-tf-tensorboard volnet/tensorflow-tensorboard
You can run tensorflow tensorboard in browser by http://localhost:6006 in the host machine.
I share the logs
folder from host to docker by volume parameter, and run tensorboard with --logdir=/logs
.