All Projects → benzaita → dockerized-cli

benzaita / dockerized-cli

Licence: MIT license
Containerized development environments using Docker

Programming Languages

python
139335 projects - #7 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to dockerized-cli

proot-static-build
Build static variants of PRoot
Stars: ✭ 63 (+14.55%)
Mutual labels:  build-tool
next-boilerplate
☶ The easiest way to create a Next app by running one command.
Stars: ✭ 65 (+18.18%)
Mutual labels:  build-tool
llmk
Light LaTeX Make
Stars: ✭ 93 (+69.09%)
Mutual labels:  build-tool
makeme
Embedthis MakeMe
Stars: ✭ 26 (-52.73%)
Mutual labels:  build-tool
rush-cli
⚡ A new and improved way of building MIT AI2 extensions.
Stars: ✭ 31 (-43.64%)
Mutual labels:  build-tool
GN-demo
Demonstrate building a C++ program with GN
Stars: ✭ 33 (-40%)
Mutual labels:  build-tool
Webpack
A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through "loaders", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.
Stars: ✭ 60,034 (+109052.73%)
Mutual labels:  build-tool
gow
Missing watch mode for Go commands. Watch Go files and execute a command like "go run" or "go test"
Stars: ✭ 343 (+523.64%)
Mutual labels:  build-tool
cmake-d
cmake for D2
Stars: ✭ 57 (+3.64%)
Mutual labels:  build-tool
ukor
A Roku build tool with support for build flavors
Stars: ✭ 45 (-18.18%)
Mutual labels:  build-tool
cacheify
Browserify transform wrapper that caches the transforms between runs to improve performance
Stars: ✭ 30 (-45.45%)
Mutual labels:  build-tool
aseprite-macos-buildsh
Automated script to create latest release app (either beta, or release whichever is newer) of Aseprite for macOS
Stars: ✭ 143 (+160%)
Mutual labels:  build-tool
millwright
The easiest build tool you'll ever use.
Stars: ✭ 27 (-50.91%)
Mutual labels:  build-tool
millw
Mill Wrapper Script
Stars: ✭ 40 (-27.27%)
Mutual labels:  build-tool
Fortran-Tools
Fortran compilers, preprocessors, static analyzers, transpilers, IDEs, build systems, etc.
Stars: ✭ 31 (-43.64%)
Mutual labels:  build-tool
buildozer
🚜 Build tool which simplify your buildprocess. Built with Gulp.js 🥤
Stars: ✭ 22 (-60%)
Mutual labels:  build-tool
goreleaser-xx
Cross compilation helper for GoReleaser
Stars: ✭ 34 (-38.18%)
Mutual labels:  build-tool
shell-loader
A Webpack loader that runs an arbitrary script on matching files
Stars: ✭ 18 (-67.27%)
Mutual labels:  build-tool
construi
Use Docker to define your build environment.
Stars: ✭ 24 (-56.36%)
Mutual labels:  build-tool
build-nginx
Fetches nginx and any optional third-party modules and dependencies you specify, such as openssl and PCRE and then configures and builds.
Stars: ✭ 48 (-12.73%)
Mutual labels:  build-tool

dockerized 🏗❤️

Easily Docker-ize your build/development environment and seamlessly run commands inside it.

dockerized is a tool for seamlessly executing commands in a container. It takes care of the details so you can run a command in a container as if it was running on your machine - just prepend any command with dockerized exec to have it run in the container.

Documentation

See https://benzaita.github.io/dockerized-cli/index.html

Getting Started

Install dockerized:

$ pip install dockerized

Initialize your environment:

$ dockerized init
$ echo FROM python:3.9 > .dockerized/Dockerfile.dockerized

or use an example:

$ dockerized init --from https://github.com/benzaita/dockerized-example-python.git

Then run a command inside that environment:

$ dockerized exec python --version
...
Python 3.9.0

Or drop into an interactive shell inside the environment:

$ dockerized shell
# python --version
Python 3.9.0
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].