Git Product home page Git Product logo

discworld's Introduction

discworld

Docker build in any Docker container

catch!

This is useful for having containers with your build tools and then creating a runtime container for your application which is not polluted with the build tools and source code.

alias itsWhalesAllTheWayDown='docker run -v /var/run/docker.sock:/var/run/docker.sock -v $(which docker):$(which docker) '

Launch your builder and run bash.

itsWhalesAllTheWayDown --rm -it -v $(pwd):/myapp myapp-builder /bin/bash

Or if you have a build script as the ENTRYPOINT

itsWhalesAllTheWayDown -d -v $(pwd):/myapp myapp-builder ...args to your script...

Now run your docker commands from within the docker container you are running. It will talk to the external docker-daemon and build your image externally.

Installation

Add the alias to your .profile, .bash_profile, or .bashrc

Minimal Golang Docker Image

docker build -t golang-dockerizer .

this may be broken right now

alias itsGophersAllTheWayDown='itsWhalesAllTheWayDown -e "APPDIR=$(pwd)" -e "EXTERNAL_GOPATH=$GOPATH" -v $(pwd):$(pwd)) --rm -it golang-dockerizer'

In your Golang project directory, create a Dockerfile like this:

FROM scratch

ADD GoappBinary /GoappBinary

ENTRYPOINT ["/GoappBinary"]

# include any other docker stuff you'd like
# ADD src/www /www
# EXPOSE 8080
# VOLUME /path/to/dir

Then run

itsGophersAllTheWayDown <image-name>

This will produce a Docker image with just your Golang app.

-- Image courtesy of https://ferrebeekeeper.files.wordpress.com/2015/03/discworld.jpg --

discworld's People

Contributors

verdverm avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.