Setup your VSCode development container configuration files with style 🦗
Install development container configuration files to your repository for one of the following:
qmcgaw/godevcontainer
qmcgaw/reactdevcontainer
qmcgaw/rustdevcontainer
qmcgaw/nodedevcontainer
qmcgaw/latexdevcontainer
qmcgaw/basedevcontainer
-
Download the binary for your machine from the last release page
-
If you are on Linux or OSX, make it executable with:
chmod x devtainr
-
Run it with
./devtainr -dev go -name projectname 📁 Creating .devcontainer directory...✔️ 📥 Downloading .dockerignore...✔️ 📥 Downloading Dockerfile...✔️ 📥 Downloading README.md...✔️ 📥 Downloading devcontainer.json...✔️ 📥 Downloading docker-compose.yml...✔️ ✏️ Setting name to project-dev...✔️ 🦾 Your go development container configuration is ready! 🚀 # More information: ./devtainr -help
docker run -it --rm -v "/yourrepopath:/repository" qmcgaw/devtainr -dev go -path /repository -name projectname
📁 Creating .devcontainer directory...✔️
📥 Downloading .dockerignore...✔️
📥 Downloading Dockerfile...✔️
📥 Downloading README.md...✔️
📥 Downloading devcontainer.json...✔️
📥 Downloading docker-compose.yml...✔️
✏️ Setting name to project-dev...✔️
🦾 Your go development container configuration is ready! 🚀
# More information
docker run -it --rm qmcgaw/devtainr -help
linux/amd64
linux/386
- If you need one more, please create an issue
Install Go, then either
-
Download it on your machine:
go get github.com/qdm12/devtainr/cmd/devtainr
-
Clone this repository and build it:
GOARCH=amd64 go build cmd/devtainr/main.go