Skip to content
/ mexec Public

Docker containers command executor run by mesos

tdna/mexec

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

Mexec

Mexec is a Python module for execute commands inside docker containers run on Mesos.

The mexec package works on Python versions:

  • 2.7.x and greater
  • 3.4.x and greater

Installation

The easiest way to install mexec is to use pip:

$ pip install mexec

Install via setup.py

$ python setup.py install

Getting Started

Make sure your docker daemons can be access with TCP (eg: docker daemon started with -H=tcp://0.0.0.0:2375) Set MEXEC_MESOS_MASTER environmental variable separated by commas and MEXEC_DOCKER_PORT (or you can set them with a cli argument):

# with env var
$ export MEXEC_MESOS_MASTER=master-1:5050,master-2:5050,master-3:5050
$ export MEXEC_DOCKER_PORT=2375

# or with cli arg
$ mexec --mesos-master master-1:5050,master-2:5050,master-3:5050 --docker-port 2375 ...

Inspect container

Inspect container. Identical to the docker inspect command.

$ mexec --docker-port 2375 YOUR_TASK_NAME inspect

Container logs

Inspect container. Identical to the docker logs command.

$ mexec --docker-port 2375 --arg "timestamps=True" --arg "tail=5" YOUR_TASK_NAME logs

See other args [here] logs.

Container processes

Display the running processes of a container.

$ mexec --docker-port 2375 --arg "ps_args=aux" YOUR_TASK_NAME top

See other args [here] top.

Exec container

Run a command in a running container.

$ mexec --docker-port 2375 --arg "cmd=ls -l /" YOUR_TASK_NAME exec_container

[//]:

About

Docker containers command executor run by mesos

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages