1
0

更新 202510_RTX4090笔电操作记录.md

This commit is contained in:
8ga 2025-10-20 13:09:27 +08:00
parent ef3194cebc
commit 8b70e43b0a

View File

@ -1,3 +1,53 @@
```
version: '3'
services:
elasticsearch:
image: swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker.elastic.co/elasticsearch/elasticsearch:7.17.28
container_name: skw-es
environment:
- discovery.type=single-node
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms2g -Xmx2g"
ulimits:
memlock:
soft: -1
hard: -1
ports:
- "39876:9200"
volumes:
- /home/ss/vllm-py12/skw-es:/usr/share/elasticsearch/data
oap:
image: swr.cn-north-4.myhuaweicloud.com/ddn-k8s/skywalking.docker.scarf.sh/apache/skywalking-oap-server:9.5.0
container_name: skw-oap
depends_on:
- elasticsearch
links:
- elasticsearch
restart: always
ports:
- "38740:11800"
- "34579:12800"
environment:
SW_STORAGE: elasticsearch
SW_STORAGE_ES_CLUSTER_NODES: elasticsearch:39876
SW_HEALTH_CHECKER: default
JAVA_OPTS: "-Xms2g -Xmx2g"
ui:
image: swr.cn-north-4.myhuaweicloud.com/ddn-k8s/skywalking.docker.scarf.sh/apache/skywalking-ui:9.5.0
container_name: skw-ui
depends_on:
- oap
links:
- oap
restart: always
ports:
- "37658:8080"
environment:
SW_OAP_ADDRESS: http://oap:34579
```
```
# 因清华大学开源镜像站 HTTP/403 换了中科大的镜像站,配置信息存放在这里
cat /etc/apt/sources.list