5

I used Docker-based installation.

$ docker run -it b.gcr.io/tensorflow/tensorflow-full

I started Tensorboard like this:

docker run -p 0.0.0.0:6006:6006 -it b.gcr.io/tensorflow/tensorflow-full
python tensorflow/tensorflow/tensorboard/tensorboard.py --logdir ./ --host 0.0.0.0

Then, I opened Chrome. I got TensorBoard on the title, but it was empty.

Here is some pictures: http://imgur.com/a/ZwdzD

How to view tensorboard on Docker-based installation correctly?

mrry
  • 123,190
  • 25
  • 396
  • 396

1 Answers1

0

I am having a similar problem. View Tensorboard on Docker on Google Cloud

I used:

docker run -p 127.0.0.1:$HOSTPORT:$6006 --name ai-unicorn -t XXXXXXXXXXXX

(The image number is replaced by X... here)

Community
  • 1
  • 1
technologiclee
  • 198
  • 1
  • 1
  • 10