All Projects → deis → docker-go-dev

deis / docker-go-dev

Licence: MIT license
The containerized Go development environment.

Programming Languages

Dockerfile
14818 projects
shell
77523 projects
Makefile
30231 projects

Projects that are alternatives of or similar to docker-go-dev

minio
Minio Object Storage in Kubernetes, used by Deis Workflow.
Stars: ✭ 51 (-45.16%)
Mutual labels:  deis-workflow
embedded-in-rust
A blog about Rust and embedded stuff
Stars: ✭ 49 (-47.31%)
Mutual labels:  development
admin-training
Galaxy Admin Training
Stars: ✭ 55 (-40.86%)
Mutual labels:  development
python-blogs
A curated list of python programming language blogs
Stars: ✭ 48 (-48.39%)
Mutual labels:  development
react-native-animated-radio-button
Fully customizable animated radio button for React Native
Stars: ✭ 25 (-73.12%)
Mutual labels:  development
dotnet-format
A GitHub Action to run dotnet-format as part of your workflow
Stars: ✭ 25 (-73.12%)
Mutual labels:  linting
therapist
Work out your commitment issues.
Stars: ✭ 29 (-68.82%)
Mutual labels:  linting
hh research
Автоматизация поиска и исследования вакансий с сайта hh.ru (Headhunter) с помощью методов Python. Классификация данных, поиск статистических параметров.
Stars: ✭ 36 (-61.29%)
Mutual labels:  development
wp-cli-dev
🛠 WP-CLI development environment that allows for easy development across all packages
Stars: ✭ 29 (-68.82%)
Mutual labels:  development
php-tester
Run your PHP scribbles
Stars: ✭ 17 (-81.72%)
Mutual labels:  development
csharp
📚 Recursos para aprender C#
Stars: ✭ 37 (-60.22%)
Mutual labels:  development
kev
Develop Kubernetes apps iteratively with Docker-Compose
Stars: ✭ 61 (-34.41%)
Mutual labels:  development
m2devbox
🚀 Head start your Magento 2 extension development with pre-configured Docker environments.
Stars: ✭ 18 (-80.65%)
Mutual labels:  development
workshop
Paralect Workshop
Stars: ✭ 31 (-66.67%)
Mutual labels:  development
Golite
Add essential language support for the Go language to Sublime Text 3.
Stars: ✭ 14 (-84.95%)
Mutual labels:  linting
Docker-Stack
This repo contains a simple Docker setup with minimal configuration and only few files you can drop into many PHP-based projects.
Stars: ✭ 31 (-66.67%)
Mutual labels:  development
CodeINN
CodeINN is an instant code editor 📃, that makes programming and development easier. Practice quickly and directly from your web browser, without any setup needed. CodeINN gives the perfect environment to developers technologists, coders computers, and geeks 🤓 to do more with their tech.
Stars: ✭ 39 (-58.06%)
Mutual labels:  development
eslint-plugin-chai-friendly
Makes eslint friendly towards Chai.js 'expect' and 'should' statements.
Stars: ✭ 49 (-47.31%)
Mutual labels:  linting
ggsysinfo
Extension for eZ Publish Legacy allowing administrators and developers to have better insight into their working installation.
Stars: ✭ 14 (-84.95%)
Mutual labels:  development
editorconfig-checker.javascript
A tool to verify that your files are in harmony with your .editorconfig
Stars: ✭ 59 (-36.56%)
Mutual labels:  linting

deis/go-dev

Build Status

A Go language development toolbox.

Some Azure projects use this Docker image as a standard build and test environment, but it is intended to be useful to any Go developer. Please help make deis/go-dev better by creating issues and submitting pull requests.

Image Contents

  • based on Ubuntu 20.04
  • az: Azure cloud command-line tool
  • azcopy: Utility for copying data to/from Microsoft Azure Blob and File storage
  • delve: debugger for the Go programming language
  • Docker: Docker binaries to be able to bind mount /var/run/docker.sock in the dev environment container
  • ginkgo: BDD testing framework for Go
  • go-bindata: converts any file into Go source code
  • golangci-lint: concurrent runner for Go linting tools
  • goss: YAML-based tool for validating a server's configuration
  • gox: simple Go cross-compiling tool
  • helm: Kubernetes package manager
  • jq: command-line JSON processor
  • jwt: tool for creating and parsing JSON Web Tokens
  • k: automatically run the correct version of kubectl every time
  • kubectl: Kubernetes command-line client
  • Packer: build automated machine images
  • ruby: ruby scripting language
  • shellcheck: static analysis for shell scripts
  • shfmt: shell script parser, formatter, and interpreter
  • shyaml: YAML access from the command line
  • test-cover.sh: test coverage for multiple Go packages
  • unzip: list, test, and extract files from ZIP archives
  • upx: executable packer
  • vim: text editor
  • wamerican: American English dictionary words for /usr/share/dict

Usage

Mount your local Go code into a container's $GOPATH to run any go command or one of the included tools or scripts. Here's an example of running ginko for deis/builder:

$ docker run --rm \
  --volume $GOPATH/src/github.com/deis/builder:/go/src/github.com/deis/builder \
  --workdir /go/src/github.com/deis/builder \
  quay.io/deis/go-dev:latest \
  ginkgo -r

Releases

The latest deis/go-dev Docker image is available at:

To publish a new release of deis/go-dev, use the deisrel tool:

$ deisrel release docker-go-dev v1.28.7
Doing a dry run of the component release...

Creating changelog for docker-go-dev with tag v1.28.6 through commit 1a69c5502ef1bca014fbd3581451d1421829a42f


### v1.28.6 -> v1.28.7
...

If the CHANGELOG contents look correct, run the same command again but add the argument --dry-run=false. You will be prompted to confirm again before any tag or release is written to GitHub.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].