version: "3.8" services: daogucms-service: image: test:latest # 构建出来的镜像 container_name: daogucms build: context: . dockerfile: Dockerfile restart: always network_mode: "host" # 使用宿主机网络 environment: TZ: "Asia/Shanghai" volumes: - /home/app/libs/:/app/build/libs/ - /home/app/uploads/:/home/app/uploads/ - /home/app/logs/:/logs/ - /etc/localtime:/etc/localtime entrypoint: java -Dloader.path=/app/build/libs -jar /app/build/test.jar