demo?
В docker-compose прописываю такой конфиг
version: '1.0'
services:
kotlinapp:
image: spring-boot-docker:0.0.1
container_name: springmoexapp
hostname: localhost
build: # this is the build context: .
context: .
dockerfile: Dockerfile
args: # these are the arguments that are passed to the dockerfile
JAR_FILE: build/libs/*.jar
ports: # port exposed to the host machine
- "8005:8005"
restart: unless-stopped
это имя проекта, по умолчанию берёт имя каталога где лежит композ файл
Обсуждают сегодня