Note: This is just a proof of concept (aka. crazy idea). Feedback is very welcome. Please share your thoughts.
docker-carrier makes it super easy to run containerized applications.
- Easily install and run containerized applications
- Run multiple versions of the same application
- Use multiple package repositories
To install firefox docker package:
docker-carrier install firefox
This will download firefox package, pull docker image and create executable in $PATH. To run application user can simply execute:
firefox
// todo
docker-carrier install package
This command will:
- search repositories for package
- download latest version
- create executable scripts in $PATH
- if package (v1.0.0) defines executable named
package-main
, docker-carrier will createpackage-main
, andpackage-main-1.0.0
executables in system $PATH
- if package (v1.0.0) defines executable named
To install specific version of package append '@' and version to package name. Eg.:
docker-carrier install [email protected]
docker-carrier uninstall package
Removes executable and docker image from system.
docker-carrier uninstall --purge package
Removes executable, docker image and all file artifacts generated by package.
docker-carrier search package
Search all enabled repositories for package.
docker-carrier list
Lists all installed packages and their versions.
docker-carrier update
Downloads package cache from enabled repositories.
docker-carrier repo add repo_uri
docker-carrier repo rm repo_uri
docker-carrier repo list
Adds, removes or lists repositories.
Package is a separate repository with file named carrier.yml
.
name: package_name
version: 1.0.0
image:
name: org/name:tag
file: Dockerfile
path: .
arguments:
executables:
package_name:
volumes:
- $HOME/.package:/data
environment:
- DISPLAY=unix$DISPLAY
device:
- /dev/snd
install:
purge:
name
- name of the package in repositoryversion
- semantic versionimage
- defines which image to pull, or how to build it from scratch- to pull image only define
name
- to build image define
file
,path
and optionallyarguments
- to pull image only define
executables
- defines how to create executable scripts- child keys define script names
install
- array of commands or path to script which will be executed after pulling or building packagepurge
- array of commands or path to script which will be executed when purging package
// todo: volumes vs multiple versions of package
// todo: package sources, package cache