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/
|
||||
|
||||
*.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
|
||||
- adminer
|
||||
- redis
|
||||
networks:
|
||||
- front-tier
|
||||
- back-tier
|
||||
command: ["npm", "start"]
|
||||
|
||||
frontend:
|
||||
|
@ -43,6 +46,8 @@ services:
|
|||
- ./frontend:/usr/src
|
||||
depends_on:
|
||||
- api
|
||||
networks:
|
||||
- front-tier
|
||||
command: ["npm", "start"]
|
||||
|
||||
db:
|
||||
|
@ -51,6 +56,8 @@ services:
|
|||
service: postgres
|
||||
from: postgres.yml
|
||||
restart: always
|
||||
networks:
|
||||
- back-tier
|
||||
volumes:
|
||||
- "db-data:/data"
|
||||
- type: bind
|
||||
|
@ -60,13 +67,21 @@ services:
|
|||
redis:
|
||||
image: "awesome/redis"
|
||||
restart: always
|
||||
networks:
|
||||
- back-tier
|
||||
expose:
|
||||
- 6379
|
||||
|
||||
adminer:
|
||||
image: "awesome/adminer"
|
||||
networks:
|
||||
- back-tier
|
||||
ports:
|
||||
- 8080:8080
|
||||
|
||||
volumes:
|
||||
volumes:
|
||||
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