https://github.com/poopoothegorilla/go-box
Vim IDE in a Container
https://github.com/poopoothegorilla/go-box
Last synced: 6 months ago
JSON representation
Vim IDE in a Container
- Host: GitHub
- URL: https://github.com/poopoothegorilla/go-box
- Owner: poopoothegorilla
- License: mit
- Created: 2015-12-05T20:01:53.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-06T02:24:08.000Z (almost 10 years ago)
- Last Synced: 2025-02-05T10:50:14.243Z (8 months ago)
- Language: VimL
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-box
This is a Docker container which contains Vim and all the necessary plugins for Go development.## 1. Setup Docker
### Brew
```bash
brew update
brew upgrade
brew install docker docker-compose docker-machine
```
[Other Install Instructions](https://docs.docker.com/engine/installation/)## 2. Build Image
### Mac OS
```bash
docker-machine create gobox -d virtualbox
eval $(docker-machine env go-ide)
docker build -t gobox .
```## 3. Start Container
```bash
docker run -v $(pwd):/project -ti gobox
```