13 lines
294 B
YAML
13 lines
294 B
YAML
version: '3'
|
|
services:
|
|
springboot-helloworld:
|
|
build:
|
|
context: ./
|
|
dockerfile: Dockerfile.make
|
|
container_name: springboot-helloworld
|
|
restart: always
|
|
environment:
|
|
- JVM_OPTS_ENV=-Xms1024m -Xmx1024m -Xmn512m -XX:+UseConcMarkSweepGC
|
|
ports:
|
|
- 8080:8080
|