All Projects → dockerland → dex

dockerland / dex

Licence: Apache-2.0 license
docker executables - run applications without installing them or their dependencies

Programming Languages

shell
77523 projects
Makefile
30231 projects

Projects that are alternatives of or similar to dex

Laravel Paket
Composer GUI. Manage Laravel dependencies from web interface without switching to command line!
Stars: ✭ 143 (+361.29%)
Mutual labels:  package-manager, installer, dependencies
Patch Package
Fix broken node modules instantly 🏃🏽‍♀️💨
Stars: ✭ 6,062 (+19454.84%)
Mutual labels:  package-manager, dependencies
Fdroidclient
Android client application.
Stars: ✭ 477 (+1438.71%)
Mutual labels:  package-manager, installer
Qdd
Download JavaScript Dependencies, really fast
Stars: ✭ 47 (+51.61%)
Mutual labels:  package-manager, installer
scoop-viewer
A gui client for scoop.
Stars: ✭ 76 (+145.16%)
Mutual labels:  package-manager, installer
Athens
A Go module datastore and proxy
Stars: ✭ 3,736 (+11951.61%)
Mutual labels:  package-manager, dependencies
Libraries.io
📚 The Open Source Discovery Service
Stars: ✭ 903 (+2812.9%)
Mutual labels:  package-manager, dependencies
scoop-directory
A searchable directory of buckets for the scoop package manager for Windows
Stars: ✭ 721 (+2225.81%)
Mutual labels:  package-manager, installer
Bibliothecary
📔 Libraries.io Package Manager Manifest Parsers
Stars: ✭ 62 (+100%)
Mutual labels:  package-manager, dependencies
Biddle
Self-hosted application distribution
Stars: ✭ 66 (+112.9%)
Mutual labels:  package-manager, installer
Bpkg
Lightweight bash package manager
Stars: ✭ 1,601 (+5064.52%)
Mutual labels:  package-manager, installer
hermit
Hermit manages isolated, self-bootstrapping sets of tools in software projects.
Stars: ✭ 312 (+906.45%)
Mutual labels:  package-manager, installer
gitpack
Git-based package manager written in POSIX shell
Stars: ✭ 72 (+132.26%)
Mutual labels:  package-manager, installer
Ort
A suite of tools to assist with reviewing Open Source Software dependencies.
Stars: ✭ 446 (+1338.71%)
Mutual labels:  package-manager, dependencies
gruntwork-installer
A script to make it easy to install Gruntwork Modules
Stars: ✭ 72 (+132.26%)
Mutual labels:  package-manager, installer
Cpm.cmake
📦 CMake's missing package manager. A small CMake script for setup-free, cross-platform, reproducible dependency management.
Stars: ✭ 560 (+1706.45%)
Mutual labels:  package-manager, dependencies
dppm
An easy way to install and manage server applications
Stars: ✭ 107 (+245.16%)
Mutual labels:  package-manager, installer
zap
⚡ Delightful AppImage package manager
Stars: ✭ 354 (+1041.94%)
Mutual labels:  package-manager, installer
Github
a module for building, searching, installing, managing, and mining Stata packages from GitHub
Stars: ✭ 56 (+80.65%)
Mutual labels:  package-manager, installer
Mint
A package manager that installs and runs executable Swift packages
Stars: ✭ 1,750 (+5545.16%)
Mutual labels:  package-manager, installer

dex

Join the chat at https://gitter.im/dockerland/dex | Build Status

  • dex allows you to run applications without installing them or their dependencies.

    • dex is a docker package manager for applications and tooling (like git, ffmpeg, and javac) as well as daemons (like redis, selenium, and caddy).
  • dex is like whalebrew, except in bash for extra pain.

    • dex images are built from regular Dockerfiles, and use labels to specify runtime behavior. If your app is dockerized, it can be dexified in seconds.

quickstart

install dex

curl -L http://get.iceburg.net/dex/latest-0.12.x/dex > /usr/local/bin/dex && \
chmod +x /usr/local/bin/dex
list available images
dex ls
play sed pong
echo 'ping' | dex run sed 's/ping/pong/'
# ^^^ sed from the 'sed' container, not your host machine!
run 'ag' (the grep replacement!) from the "extra" repository
echo "hello" > world.txt
dex run extra/ag "hello"
WTF is dex doing?
DEX_DEBUG=true dex run extra/ag "hello"
bind mount a host path by passing arbitrary volume flag
$ mkdir -p /tmp/ping/pong
$ DEX_DOCKER_FLAGS="-v /tmp/ping:/tmp/ping" ./main.sh run debian ls /tmp/ping
pong

see v1-runtime docs for more runtime variables.

use DOS like a boss
mkdir dos-test
cd dos-test
dex run edit enjoy-edit.com.txt
cd ..
dex run deltree dost-test
# ^^^ yay 1984
install macos-sed to /usr/local/bin, with a'macos-' prefix
DEX_BIN_DIR=/usr/local/bin DEX_BIN_PREFIX=macos- dex install sed:macos
macos-sed --help
# ^^^ yay 1994
register your custom repository and install all images from it
dex repo add acme-tools [email protected]/acme-tools/bootstrap.git
dex install acme-tools/
# ^^^ super useful in bootstrap scripts

docs/usage.md for more.

requirements

dex can run anywhere docker works, including Windows 10.

installation

Use one of the below methods to install dex.

from a release

dex is periodically packaged as a monolithic script and published to;

download a release and copy it to a folder in your $PATH;

curl -L http://get.iceburg.net/dex/latest-0.12.x/dex > /usr/local/bin/dex && \
chmod +x /usr/local/bin/dex

from source

git clone [email protected]:dockerland/dex.git
cd dex
# run dex,
./main.sh
# -or- install to /usr/local/bin/dex
sudo make install

from a series of tubes (no installation)

Diehards run dex from the Al Gore provided Cloud

curl -L http://get.iceburg.net/dex/latest-0.12.x/dex | bash -s 'install' 'ag'
# ^^^ installs 'ag' without installing dex

contribute to dex

By all means! Before you submit a PR, please include tests and make sure they pass. See tests for more.

containerize your application

The process is the same as providing a normal Dockerfile, except you use label(s) to effect runtime behavior.

Others may find your image useful! Please publish to one of our repositories.

Use existing Dockerfiles in the above repositories as reference, or see docs/HOWTO.md for more details.

why dex?

Dex provides consistency and convenience around the installation and execution of application containers, and we we wrote it as part of a "modern" bootstrap to improve tooling management.

dex is safe

Dex applications are independent, portable, and non-intrusive. Gone are the days of mucking up a developer's machine and fiddling with versions. You no longer need java, node, ruby, python, or even make locally installed to be productive.

dex is easy

Dex remains consistent with docker command line behavior. Users and tool authors can containerize, distribute, and consistently execute applications as intended.

dex is fun

We also wanted to try fun things like executing MacOS commands to test flag behavior or seeing if we could use edit.com from DOS (hint: it works!). We also want to support windowed/X11 applications, so expect dex run firefox.

See other use cases for ideas on leveraging dex.

license

Dex is licensed under the Apache License, Version 2.0. See LICENSE for the full license text.

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].