kucharzyk / spring-angular2-starter

PROJECT DISCONTINUED
MIT License
210 stars 65 forks source link

Build failure #41

Closed herasimau closed 8 years ago

herasimau commented 8 years ago

When running mvn install, i see exсeption and Build failure.

Docker is runnig...

immagine

kucharzyk commented 8 years ago

You need to setup environment variables for docker.

In windows you have to it manually (except windows 10 pro with docker on hyper-v)

After starting docker run docker-machine env command to see variables you need to set

C:\dev\projects\spring-angular2-starter>docker-machine env
SET DOCKER_TLS_VERIFY=1
SET DOCKER_HOST=tcp://192.168.99.100:2376
SET DOCKER_CERT_PATH=C:\Users\tomasz\.docker\machine\machines\default
SET DOCKER_MACHINE_NAME=default
REM Run this command to configure your shell:
REM     @FOR /f "tokens=*" %i IN ('docker-machine env') DO @%i

after then set this values as environment variables

smile2014 commented 8 years ago

Do you use any IDE as a development tool

kucharzyk commented 8 years ago

I'm using InteliJ IDEA. It's the best IDE for me.

tsukhu commented 8 years ago

I've been using STS 3.8 for development. That too works fine , given the spring source support.

smile2014 commented 7 years ago

@kucharzyk thank you .