first commit

This commit is contained in:
zzw
2026-08-05 17:37:32 +08:00
commit 38be479cef
72 changed files with 15670 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
services:
bff:
image: golang:1.24.3
volumes:
- ..:/src
- go-mod-cache:/go/pkg/mod
working_dir: /src/bff
command: go run . -f etc/bff.yaml
ports:
- "10000:10000"
environment:
NACOS_SERVER_ADDR: rnacos:8848
depends_on:
- rnacos
product:
image: golang:1.24.3
volumes:
- ..:/src
- go-mod-cache:/go/pkg/mod
working_dir: /src/product
command: go run . -f etc/product.yaml
ports:
- "10100:10100"
environment:
NACOS_SERVER_ADDR: rnacos:8848
depends_on:
- rnacos
volumes:
go-mod-cache:
networks:
default:
external: true
name: server-network