1 Star 0 Fork 125

paul008/neatlogic-itom-all

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-compose.yml 3.20 KB
一键复制 编辑 原始数据 按行查看 历史
lvzk 提交于 2024-01-05 15:47 . update docker-compose.yml.
version: "3.2"
networks:
neatlogic:
driver: bridge
services:
neatlogic-db:
image: neatlogic/neatlogic-db:community-3.2.0
container_name: neatlogic-db
stdin_open: true
tty: true
volumes:
- /app/logs/neatlogicdb/:/app/logs/neatlogicdb/
ports:
- "3306:3306"
ulimits:
nproc: 65535
nofile:
soft: 65535
hard: 65535
environment:
NEATLOGIC_HOME: "/app"
NEATLOGIC_RUNNER_HOST: "neatlogic-runner"
MYSQL_SERVICE_PASSWORD: "neatlogic@901"
networks:
- neatlogic
neatlogic-collectdb:
image: neatlogic/neatlogic-collectdb:community-3.2.0
container_name: neatlogic-collectdb
stdin_open: true
tty: true
volumes:
- /app/logs/collectdb/:/app/logs/collectdb/
ports:
- "27017:27017"
ulimits:
nproc: 65535
nofile:
soft: 65535
hard: 65535
environment:
- NEATLOGIC_HOME:/app
networks:
- neatlogic
neatlogic-runner:
image: neatlogic/neatlogic-runner:community-3.2.0
container_name: neatlogic-runner
stdin_open: true
tty: true
volumes:
- /app/logs/neatlogic-runner/:/app/logs/autoexec-runner/
ports:
#连接端口
- "8084:8084"
#心跳端口
- "8888:8888"
ulimits:
nproc: 65535
nofile:
soft: 65535
hard: 65535
restart: always
environment:
- NEATLOGIC_HOME:/app
networks:
- neatlogic
depends_on:
- neatlogic-app
neatlogic-nacos:
image: neatlogic/neatlogic-nacos:community-3.2.0
container_name: neatlogic-nacos
stdin_open: true
tty: true
volumes:
- /app/logs/neatlogic-nacos/:/home/nacos/logs
ports:
- "8848:8848"
ulimits:
nproc: 65535
nofile:
soft: 65535
hard: 65535
depends_on:
- neatlogic-db
restart: always
environment:
#连接的mysql配置
MYSQL_SERVICE_HOST: "neatlogic-db"
MYSQL_SERVICE_PORT: 3306
MYSQL_SERVICE_DB_NAME: "nacos"
MYSQL_SERVICE_USER: root
MYSQL_SERVICE_PASSWORD: "neatlogic@901"
networks:
- neatlogic
neatlogic-app:
image: neatlogic/neatlogic-app:community-3.2.0
container_name: neatlogic-app
stdin_open: true
tty: true
volumes:
- /app/logs/neatlogic-app/:/app/logs/neatlogic/
ports:
#宿主端口:容器端口
- "8282:8282"
ulimits:
nproc: 65535
nofile:
soft: 65535
hard: 65535
depends_on:
- neatlogic-db
- neatlogic-collectdb
- neatlogic-nacos
environment:
NACOS_SERVICE_HOST: "neatlogic-nacos"
NACOS_SERVICE_PORT: "8848"
NACOS_SERVICE_NAMESPACE: "neatlogic-docker"
restart: always
networks:
- neatlogic
neatlogic-web:
image: neatlogic/neatlogic-web:community-3.2.0
container_name: neatlogic-web
stdin_open: true
tty: true
volumes:
- /app/logs/neatlogic-web/:/app/logs/nginx/
ports:
- "8090:8090"
ulimits:
nproc: 65535
nofile:
soft: 65535
hard: 65535
restart: always
environment:
- NEATLOGIC_HOME:/app
networks:
- neatlogic
depends_on:
- neatlogic-app
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/paul008/neatlogic-itom-all.git
[email protected]:paul008/neatlogic-itom-all.git
paul008
neatlogic-itom-all
neatlogic-itom-all
develop3.0.0

搜索帮助