-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
jialong.wang
committed
Mar 28, 2024
1 parent
7811dfb
commit 3e07e92
Showing
7 changed files
with
29 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
.DS_Store | ||
.vscode | ||
probe.db | ||
deploy.sh | ||
*__pycache__ | ||
*.py[cod] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
version: '3' | ||
version: "3" | ||
services: | ||
amprobe: | ||
image: amuluze/amprobe:v1.0 | ||
container_name: amprobe # 容器名为'postgresql' | ||
restart: always | ||
volumes: | ||
- /var/run/docker.sock:/var/run/docker.sock | ||
- /proc:/host/proc:ro | ||
- /sys:/host/sys:ro | ||
- /dev:/host/dev:ro | ||
- /etc:/host/etc:ro | ||
- /:/rootfs:ro | ||
- /data/amprobe/configs:/app/configs | ||
ports: | ||
- 80:80 | ||
amprobe: | ||
image: amuluze/amprobe:v1.2 | ||
container_name: amprobe # 容器名为'postgresql' | ||
restart: always | ||
volumes: | ||
- /var/run/docker.sock:/var/run/docker.sock | ||
- /proc:/host/proc:ro | ||
- /sys:/host/sys:ro | ||
- /dev:/host/dev:ro | ||
- /etc:/host/etc:ro | ||
- /:/rootfs:ro | ||
- /data/amprobe/configs:/app/configs | ||
- /data/amprobe/nginx/nginx.conf:/etc/nginx/nginx.conf | ||
- /data/amprobe/supervisor:/etc/supervisor/conf.d | ||
- /data/amprobe/dist:/usr/share/nginx/html | ||
ports: | ||
- 8082:8082 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
<template> | ||
<div> | ||
Breadcrum | ||
<!-- <div> | ||
<el-breadcrumb separator="/"> | ||
<el-breadcrumb-item v-for="(item, index) in breadcrumbList" :key="index"> | ||
<span>{{ item.title }}</span> | ||
</el-breadcrumb-item> | ||
</el-breadcrumb> | ||
</div> | ||
</div> --> | ||
</template> | ||
<script setup lang="ts"></script> | ||
<style scoped lang="scss"></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters