Exception on reloading remote spring boot application with Intellij IDEA
I'm trying to setup remote spring-boot environment using spring devtools , docker and IntelliJ. All started with this article . Unfortunately it randomly fails with an exception. Below the configuration: Dockerfile FROM java:8 EXPOSE 8888 WORKDIR /app ADD build.gradle /app/build.gradle ADD gradlew /app/gradlew ADD gradle /app/gradle ADD src /app/src RUN ["chmod", "+x", "/app/gradlew"] docker-compose.yml backend: build: . env_file: environment ports: - "8888:8888" volumes: - ./.gradle-docker:/root/.gradle command: "/app/gradlew clean bootRun" links: - db db: image: postgres:9.5.3 env_file: