Example of Docker socket mount for a Golang application
422
In this repository we share an example of "Go and Mount the Docker Socket container pattern" for the workshop 5 containers patterns for 5 languages.
# The following steps are commented out because
# not necessary to run the example
# git clone https://github.com/containerslanguages/go
# Build the main.go
# docker build -t containerslanguages/golang-build -f Dockerfile.build .
# docker run -v $(pwd):/code/ -w /code/ containerslanguages/golang-build -o /code/main main.go
# Build the image from scratch
# docker build -t containerslanguages/golang .
docker run -t -v /var/run/docker.sock:/var/run/docker.sock \
containerslanguages/golang
Content type
Image
Digest
Size
2.7 MB
Last updated
almost 10 years ago
docker pull containerslanguages/golang