12 lines
309 B
YAML
12 lines
309 B
YAML
|
|
services:
|
||
|
|
xyt:
|
||
|
|
image: openjdk:21
|
||
|
|
container_name: xyt
|
||
|
|
restart: always
|
||
|
|
network_mode: host
|
||
|
|
volumes:
|
||
|
|
- /root/gunshiApp/xyt:/app
|
||
|
|
- /etc/localtime:/etc/localtime:ro
|
||
|
|
environment:
|
||
|
|
- SPRING_PROFILES_ACTIVE=prod
|
||
|
|
command: java -jar /app/gunshi-project-xyt-1.0-SNAPSHOT.jar
|