chore: add cpv results in examples
This commit is contained in:
parent
cbb1f0575d
commit
f34ff42be3
4 changed files with 18 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -161,3 +161,4 @@ cython_debug/
|
||||||
#.idea/
|
#.idea/
|
||||||
|
|
||||||
*.png
|
*.png
|
||||||
|
!examples/**/*.png
|
||||||
|
|
BIN
examples/full-stack-node-app/compose-viz.png
Normal file
BIN
examples/full-stack-node-app/compose-viz.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 92 KiB |
|
@ -26,6 +26,9 @@ services:
|
||||||
- db
|
- db
|
||||||
- adminer
|
- adminer
|
||||||
- redis
|
- redis
|
||||||
|
networks:
|
||||||
|
- front-tier
|
||||||
|
- back-tier
|
||||||
command: ["npm", "start"]
|
command: ["npm", "start"]
|
||||||
|
|
||||||
frontend:
|
frontend:
|
||||||
|
@ -43,6 +46,8 @@ services:
|
||||||
- ./frontend:/usr/src
|
- ./frontend:/usr/src
|
||||||
depends_on:
|
depends_on:
|
||||||
- api
|
- api
|
||||||
|
networks:
|
||||||
|
- front-tier
|
||||||
command: ["npm", "start"]
|
command: ["npm", "start"]
|
||||||
|
|
||||||
db:
|
db:
|
||||||
|
@ -51,6 +56,8 @@ services:
|
||||||
service: postgres
|
service: postgres
|
||||||
from: postgres.yml
|
from: postgres.yml
|
||||||
restart: always
|
restart: always
|
||||||
|
networks:
|
||||||
|
- back-tier
|
||||||
volumes:
|
volumes:
|
||||||
- "db-data:/data"
|
- "db-data:/data"
|
||||||
- type: bind
|
- type: bind
|
||||||
|
@ -60,13 +67,21 @@ services:
|
||||||
redis:
|
redis:
|
||||||
image: "awesome/redis"
|
image: "awesome/redis"
|
||||||
restart: always
|
restart: always
|
||||||
|
networks:
|
||||||
|
- back-tier
|
||||||
expose:
|
expose:
|
||||||
- 6379
|
- 6379
|
||||||
|
|
||||||
adminer:
|
adminer:
|
||||||
image: "awesome/adminer"
|
image: "awesome/adminer"
|
||||||
|
networks:
|
||||||
|
- back-tier
|
||||||
ports:
|
ports:
|
||||||
- 8080:8080
|
- 8080:8080
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
db-data:
|
db-data:
|
||||||
|
|
||||||
|
networks:
|
||||||
|
front-tier:
|
||||||
|
back-tier:
|
||||||
|
|
BIN
examples/non-normative/compose-viz.png
Normal file
BIN
examples/non-normative/compose-viz.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 48 KiB |
Loading…
Reference in a new issue