| 1234567891011121314151617181920212223242526272829 |
- services:
- #注册发现服务 - 集群
- consul_node:
- image: consul:${consul_version}
- ports:
- - "8500:8500"
- - "8600:8600/udp"
- container_name: consul
- volumes:
- - "./data/consul:/data"
- restart: always
- springboot:
- image: lianshufeng/springboot:jdk17
- ports:
- - "8080:8080"
- volumes:
- - "./:/opt/jar"
- working_dir: /opt/jar
- container_name: app
- restart: always
- environment:
- - UpdateResources=http://192.168.0.28:8080/BuildHelper-0.0.1-SNAPSHOT.jar
- command: nohup java -Dfile.encoding=UTF-8 -Xmx500m -Xms300m -Duser.timezone=GMT+8 -Dspring.profiles.active=dev -jar app.jar
- depends_on:
- - consul_node
|