mirror of
https://github.com/KeyZox71/knl_meowscendence.git
synced 2025-08-14 12:32:54 +02:00
「🔨」 fix: fixed some things.
This commit is contained in:
@ -3,7 +3,7 @@ services:
|
|||||||
container_name: transcendence-api-user
|
container_name: transcendence-api-user
|
||||||
build:
|
build:
|
||||||
dockerfile: docker/api-base/Dockerfile
|
dockerfile: docker/api-base/Dockerfile
|
||||||
context: ..
|
context: ../../
|
||||||
volumes:
|
volumes:
|
||||||
- db-user:/db
|
- db-user:/db
|
||||||
networks:
|
networks:
|
||||||
@ -18,7 +18,7 @@ services:
|
|||||||
container_name: transcendence-api-auth
|
container_name: transcendence-api-auth
|
||||||
build:
|
build:
|
||||||
dockerfile: docker/api-base/Dockerfile
|
dockerfile: docker/api-base/Dockerfile
|
||||||
context: ..
|
context: ../../
|
||||||
volumes:
|
volumes:
|
||||||
- db-auth:/db
|
- db-auth:/db
|
||||||
networks:
|
networks:
|
||||||
|
@ -3,7 +3,7 @@ services:
|
|||||||
container_name: transcendence-front
|
container_name: transcendence-front
|
||||||
build:
|
build:
|
||||||
dockerfile: docker/front/Dockerfile
|
dockerfile: docker/front/Dockerfile
|
||||||
context: ..
|
context: ../../
|
||||||
ports:
|
ports:
|
||||||
- ${OUT_PORT}:443
|
- ${OUT_PORT}:443
|
||||||
environment:
|
environment:
|
||||||
|
16
docker/monitoring/exporters/node/compose.yml
Normal file
16
docker/monitoring/exporters/node/compose.yml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
services:
|
||||||
|
node-exporter:
|
||||||
|
container_name: transcendence-node-exporter
|
||||||
|
image: prom/node-exporter:latest
|
||||||
|
volumes:
|
||||||
|
- /proc:/host/proc:ro
|
||||||
|
- /sys:/host/sys:ro
|
||||||
|
- /:/rootfs:ro
|
||||||
|
command:
|
||||||
|
- '--path.procfs=/host/proc'
|
||||||
|
- '--path.rootfs=/rootfs'
|
||||||
|
- '--path.sysfs=/host/sys'
|
||||||
|
- '--collector.filesystem.mount-points-exclude=^/(sys|proc|dev|host|etc)($$|/)'
|
||||||
|
networks:
|
||||||
|
- prom-exporter
|
||||||
|
restart: unless-stopped
|
@ -19,3 +19,7 @@ scrape_configs:
|
|||||||
- job_name: 'nginx'
|
- job_name: 'nginx'
|
||||||
static_configs:
|
static_configs:
|
||||||
- targets: ['nginx-exporter:9113']
|
- targets: ['nginx-exporter:9113']
|
||||||
|
|
||||||
|
- job_name: 'node-exporter'
|
||||||
|
static_configs:
|
||||||
|
- targets: ['node-exporter:9100']
|
||||||
|
Reference in New Issue
Block a user