1 Star 0 Fork 1

不上道的木杉 / Scada-LTS

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
docker-compose.yml 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
# Docker compose file to manage your deployed images.
# Use MySQL server 5.7 and latest Scada-LTS local build.
# Using attached webapps folder as developer you will be able to modify the static content from host os.
# Attach shell to stop the tomcat instance and then you will be able to run in JPDA mode.
version: '3'
services:
database:
container_name: mysql
image: mysql/mysql-server:5.7
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_USER=root
- MYSQL_PASSWORD=root
- MYSQL_DATABASE=scadalts
expose: ["3306"]
volumes:
- ./docker/volumes/databases:/home/
network_mode: host
tomcat:
image: scadalts/scadalts:2.5.0
build: .
ports:
- "8080:8080"
depends_on:
- database
expose: ["8080", "8000"]
volumes:
- ./docker/volumes/webapps:/usr/local/tomcat/webapps
# - ./build/libs/Scada-LTS.war:/usr/local/tomcat/webapps/ScadaBR.war
network_mode: host
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/15873661/Scada-LTS.git
git@gitee.com:15873661/Scada-LTS.git
15873661
Scada-LTS
Scada-LTS
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891