Skip to content

Tag: docker

Package manager on the Docker Machine default VM?

I’m developing on OSX using Docker Machine. I used the quickstart terminal to let it create the default VM which is extremely minimal: In an OS X installation, the docker daemon is running inside a Linux VM called default. The default is a lightweight Linux VM made specifically to run the Docker daemon …

Golang Mac OSX build for Docker machine

I need to run Golang application on Docker machine. I’m working on Mac OSX and Docker is working on top of Linux virtual machine, so binaries builded on Mac are not runnable on Docker. I see two ways here: cross-compile binaries on Mac for linux OS copy project sources to docker, run ‘go get&#8217…

OS for Docker Image – Flavors

I’m very curious if most people are simply using Ubuntu for the majority of Linux flavors out there for their Docker images or if they’re using others. Can you tell me if you are using Ubuntu and if not why..and what else are you using? Is Ubuntu the defacto flavor just in general? Answer Many peo…

Docker compose build error

If I use command docker-compose build, I’ll get error that looks like: I use the last version docker and docker-compose. My docker-compose.yml has the next code: I use an ubuntu 14.04 Could you tell me how is fix it? Answer You need to put the port definitions in quotes for short ports (2 digits). This …