Merge pull request #19 from compose-viz/dev

fix: links may not always have aliases
This commit is contained in:
Xyphuz 2022-05-26 10:00:23 +08:00 committed by GitHub
commit c3dbe0cb83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 22 additions and 15 deletions

View file

@ -1,2 +1,2 @@
__app_name__ = "compose_viz"
__version__ = "0.1.0"
__version__ = "0.1.1"

View file

@ -85,7 +85,11 @@ class Graph:
self.add_vertex(port.host_port, "port", lable=port.host_port)
self.add_edge(port.host_port, service.name, "ports", lable=port.container_port)
for link in service.links:
self.add_edge(link.split(":")[0], service.name, "links", link.split(":")[1])
if ":" in link:
service_name, alias = link.split(":", 1)
self.add_edge(service_name, service.name, "links", alias)
else:
self.add_edge(link, service.name, "links")
for depends_on in service.depends_on:
self.add_edge(service.name, depends_on, "depends_on")

View file

@ -3,3 +3,5 @@ version: "3.9"
services:
postgres:
image: awesome/postgres
node:
image: awesome/node

Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 99 KiB

View file

@ -1,15 +1,11 @@
version: "3.9"
services:
node:
build:
context: .
dockerfile: Dockerfile.node
api:
image: "awesome/api"
extends:
service: node
file: common-services.yml
build:
args:
PACKAGE_PATH: api
@ -30,10 +26,10 @@ services:
- front-tier
- back-tier
command: ["npm", "start"]
frontend:
extends:
service: node
file: common-services.yml
build:
args:
PACKAGE_PATH: frontend
@ -49,12 +45,11 @@ services:
networks:
- front-tier
command: ["npm", "start"]
db:
image: "awesome/db"
extends:
service: postgres
file: postgres.yml
file: common-services.yml
restart: always
networks:
- back-tier
@ -63,7 +58,6 @@ services:
- type: bind
source: /var/run/postgres/postgres.sock
target: /var/run/postgres/postgres.sock
redis:
image: "awesome/redis"
restart: always
@ -71,13 +65,20 @@ services:
- back-tier
expose:
- 6379
adminer:
image: "awesome/adminer"
networks:
- back-tier
links:
- db
ports:
- 8080:8080
proxy:
image: "awesome/proxy"
build:
context: .
dockerfile: Dockerfile.proxy
networks:
- front-tier
volumes:
db-data:

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "compose-viz"
version = "0.1.0"
version = "0.1.1"
description = "A compose file visualization tool that supports compose-spec and allows you to gernerate graph in DOT format or PNG."
authors = ["Xyphuz Wu <xyphuzwu@gmail.com>"]
readme = "README.md"