You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
511 B
18 lines
511 B
version: "3.7"
|
|
services:
|
|
data-statistical-server:
|
|
container_name: data-statistical-server-dev
|
|
image: 192.168.1.130:10080/epmet-cloud-dev/data-statistical-server:0.3.77
|
|
ports:
|
|
- "8108:8108"
|
|
network_mode: host # 使用现有网络
|
|
volumes:
|
|
- "/opt/epmet-cloud-logs/dev:/logs"
|
|
environment:
|
|
RUN_INSTRUCT: "java -Xms32m -Xmx512m -jar ./data-stats.jar"
|
|
restart: "unless-stopped"
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '0.1'
|
|
memory: 600M
|
|
|