mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-02-10 18:05:10 +08:00
15 lines
329 B
YAML
15 lines
329 B
YAML
version: '3'
|
|
services:
|
|
java-spring:
|
|
build:
|
|
context: ./
|
|
dockerfile: Dockerfile
|
|
image: maven:3.8.1
|
|
working_dir: /java-spring
|
|
volumes:
|
|
- .:/java-spring
|
|
ports:
|
|
- 4000:4000
|
|
command: mvn clean spring-boot:run
|
|
|
|
|