I'm trying to make a build env with docker and i want to make this automatic. i've written a custom go binary to handle build stuff and i've built an image which has the go binary
, maven
and java8 sdk
installed.
The steps that binary does are:
- Clone a git repo
- Run build command
- Extract build artifacts to host. (which hasnt done yet.)
I'm passing repo url as parameter to binary while running container and it does build.
But the problem is i need those artifacts in order to run builted app.
I know i can use volumes
, but i dont want to use them because when build has done volumes are becoming dangle
and it needs a job for deleting those dangling volumes
.
I thought i can create an api for saving files into host (that means i have to run that api inside host machine) and my custom go binary can send files to the api and api will do the saving.
But when it comes to calling host from inside a container i've got a problem. i'm getting connection refused to port xx
error.
Is there a better way to do it , or should i change my approach?