1 Star 0 Fork 2.4K

余莎/roncoo-education

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
docker-compose.yml 1.84 KB
Copy Edit Raw Blame History
领课 authored 2023-12-30 08:39 . feat: 修改默认端口,方便记忆
version: "3.0"
services:
gateway:
build:
context: ./roncoo-education-gateway
args:
JAVA_OPTS: '-Xmn256M -Xmx256M'
RUN_ARGS: '--spring.profiles.active=demo --spring.cloud.nacos.server-addr=localhost:8848'
image: roncoo-education-gateway
container_name: gateway
restart: always
volumes:
- /home/roncoo/logs/gateway:/root/logs/gateway
networks:
- education
ports:
- "7700:7700"
service-system:
build:
context: ./roncoo-education-service/roncoo-education-service-system
args:
JAVA_OPTS: '-Xmn256M -Xmx256M'
RUN_ARGS: '--spring.profiles.active=demo --spring.cloud.nacos.server-addr=localhost:8848'
image: roncoo-education-service-system
container_name: system
restart: always
volumes:
- /home/roncoo/logs/system:/root/logs/system
networks:
- education
ports:
- "7710:7710"
service-user:
build:
context: ./roncoo-education-service/roncoo-education-service-user
args:
JAVA_OPTS: '-Xmn256M -Xmx256M'
RUN_ARGS: '--spring.profiles.active=demo --spring.cloud.nacos.server-addr=localhost:8848'
image: roncoo-education-service-user
container_name: user
restart: always
volumes:
- /home/roncoo/logs/user:/root/logs/user
networks:
- education
ports:
- "7720:7720"
service-course:
build:
context: ./roncoo-education-service/roncoo-education-service-course
args:
JAVA_OPTS: '-Xmn256M -Xmx256M'
RUN_ARGS: '--spring.profiles.active=demo --spring.cloud.nacos.server-addr=localhost:8848'
image: roncoo-education-service-course
container_name: course
restart: always
volumes:
- /home/roncoo/logs/course:/root/logs/course
networks:
- education
ports:
- "7730:7730"
networks:
education:
driver: host
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/youwen_admin/roncoo-education.git
git@gitee.com:youwen_admin/roncoo-education.git
youwen_admin
roncoo-education
roncoo-education
master

Search