This repository has been archived by the owner on Jul 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
10 changed files
with
72 additions
and
21 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
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
version: '3' | ||
services: | ||
geom-service-admin: | ||
image: ghcr.io/xezzon/geom-service-admin | ||
container_name: geom-service-admin | ||
environment: | ||
- GEOM_JWT_ISSUER=xezzon.github.io | ||
- OTEL_SDK_DISABLED=false # 启用 OpenTelemetry | ||
- OTEL_EXPORTER_OTLP_ENDPOINT=http://otel:4317 | ||
restart: unless-stopped | ||
geom-service-openapi: | ||
image: ghcr.io/xezzon/geom-service-openapi | ||
container_name: geom-service-openapi | ||
environment: | ||
- GEOM_JWT_ISSUER=xezzon.github.io | ||
- OTEL_SDK_DISABLED=false | ||
- OTEL_EXPORTER_OTLP_ENDPOINT=http://otel:4317 | ||
restart: unless-stopped | ||
myapp: # 开发者自己的业务代码 打包为 Docker 镜像 | ||
image: myapp | ||
container_name: myapp | ||
|
||
networks: | ||
default: | ||
driver: bridge | ||
gateway_default: # 与网关处于同一网络下 | ||
external: true | ||
telemetry_collector: # 与 OpenTelemetry Collector 处于同一网络下,可以通过其容器名作为域名进行访问 | ||
external: true |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# 应用服务 | ||
|
||
## jib-maven-plugin | ||
|
||
## OpenTelemetry |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
# 开放平台服务 |