pmsipilot / docker-compose-viz

Docker compose graph visualization
MIT License
897 stars 67 forks source link

`--output-format=display` has no effect (linux) #27

Open lrkwz opened 6 years ago

lrkwz commented 6 years ago

I'm using ubuntu. The output to display option has no effect.

My default image viewer is eog (gnome image viewer)

$ uname -a
Linux lrkwz-Precision-SSD-M4500 4.13.0-26-generic #29~16.04.2-Ubuntu SMP Tue Jan 9 22:00:44 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 16.04.3 LTS
Release:    16.04
Codename:   xenial
$ gnome-shell --version
GNOME Shell 3.18.5
$ eog --version
GNOME Image Viewer 3.18.2
jubianchi commented 6 years ago

To make the display format work, you have to ensure the xdg-command is available on your machine.

This command is used by the underlying library to display the graph : https://github.com/graphp/graphviz/blob/master/src/GraphViz.php#L126

lrkwz commented 6 years ago

Ther'e must be something wrong in graphwiz then because the xdg-command is available in $PATH.

$ which xdg-open
/usr/bin/xdg-open

I see no way to trace the error though :-( both stderr and stdout are redirected to null.

lrkwz commented 6 years ago

Close to catching the error

docker run --rm \
    -it \
    -v $(pwd):/input/ \
    -u 0 \
    pmsipilot/docker-compose-viz \
    php -r 'exec("xdg-open docker-compose.png >/dev/null>/dev/null");'
sh: xdg-open: not found

adding apk add xdg-utils in Dockerfile is not enough, there must be a way to pass the command to the host.

jubianchi commented 6 years ago

@lrkwz As you mention there are some missing packages inside the Docker image.

After adding them and running some tests it appears there are some other issues:

clue commented 6 years ago

@jubianchi Thank you for your analysis. I don't have the capacity to actively participate here right now, but if you feel anything is missing/unclear in graphp/graphviz, make sure to let me know and I'll try to look into this 👍

jubianchi commented 6 years ago

@clue I don't really think graphp/graphviz is missing anything. We are in some kind of edge-case here (using xdg-open in an asynchronous way when the parent process has a short lifetime).

I think I'll extend the class and override the display method to get the expected behavior when running in Docker.

If you ever want to integrate this change in the library I'll be happy to open a PR on your side. But for now, I don't want to bother you with such "specific" changes. If you ever get a feature request for this kind of use-case, I'll be happy to contribute to your (really useful) library ;)

clue commented 6 years ago

I'm always happy to hear if any of my libraries is useful! 👍 That being said, I don't consider this to be perfect, so if you feel this is useful, go ahead, I'm happy about PRs :shipit:

jubianchi commented 4 years ago

@wixyvir would you mind taking a look at this issue and see if #32 is something we should build upon?

Thanks 🙏