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
365 B
18 lines
365 B
version: '3.3'
|
|
services:
|
|
opsli-boot:
|
|
build: ./
|
|
restart: on-failure
|
|
container_name: opsli-boot
|
|
image: opsli-boot
|
|
environment:
|
|
TZ: Asia/Shanghai
|
|
LANG: en_US.UTF-8
|
|
command:
|
|
- -Xmx2048m
|
|
- -Xms2048m
|
|
- -XX:+UseG1GC
|
|
- -XX:MaxGCPauseMillis=200
|
|
- --spring.profiles.active=dev
|
|
ports:
|
|
- "8080:8080" |